diff options
author | Kamil Kaminski <kamilkss@gmail.com> | 2011-12-11 03:33:38 -0600 |
---|---|---|
committer | Kamil Kaminski <kamilkss@gmail.com> | 2011-12-11 03:33:38 -0600 |
commit | a78b14f8315d86b13ff9271659e84b2043f6bdc4 (patch) | |
tree | 076deba0bf951bbea398103ee4ee301ab5a67946 /m.lua | |
download | lua-master.tar.gz lua-master.tar.bz2 lua-master.zip |
Diffstat (limited to 'm.lua')
-rw-r--r-- | m.lua | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -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
+
|