summaryrefslogtreecommitdiffstats
path: root/m.lua
diff options
context:
space:
mode:
authorKamil Kaminski <kamilkss@gmail.com>2011-12-11 03:33:38 -0600
committerKamil Kaminski <kamilkss@gmail.com>2011-12-11 03:33:38 -0600
commita78b14f8315d86b13ff9271659e84b2043f6bdc4 (patch)
tree076deba0bf951bbea398103ee4ee301ab5a67946 /m.lua
downloadlua-master.tar.gz
lua-master.tar.bz2
lua-master.zip
initial commitHEADmaster
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
+