summaryrefslogtreecommitdiffstats
path: root/m.lua
diff options
context:
space:
mode:
Diffstat (limited to 'm.lua')
-rw-r--r--m.lua11
1 files changed, 11 insertions, 0 deletions
diff --git a/m.lua b/m.lua
new file mode 100644
index 0000000..3a04e81
--- /dev/null
+++ b/m.lua
@@ -0,0 +1,11 @@
+module(..., package.seeall);
+
+function printDict(t)
+ if not (t) then
+ return
+ end
+ for k, v in pairs(t) do
+ print(k, v)
+ end
+end
+