summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorthe lemons <citrons@mondecitronne.com>2022-10-26 19:46:15 -0500
committerthe lemons <citrons@mondecitronne.com>2022-10-26 19:46:15 -0500
commit66cdb19b08ad8a19cc6e05450b71bdde5ee163f5 (patch)
tree9760ae915897e7081c94777f7719f1929b1ca43e
init.lua
-rw-r--r--czzc/init.lua8
1 files changed, 8 insertions, 0 deletions
diff --git a/czzc/init.lua b/czzc/init.lua
new file mode 100644
index 0000000..eea504b
--- /dev/null
+++ b/czzc/init.lua
@@ -0,0 +1,8 @@
+local _table = require"czzc.table"
+local function czzc_require(mod)
+ _G[mod] = _table.copy(require("czzc."..mod), _G[mod])
+end
+
+czzc_require"table"
+czzc_require"string"
+czzc_require"io"