summaryrefslogtreecommitdiffstats
path: root/m.lua
blob: 3a04e8138fab18917ab288a7c32de31f3f85713c (plain)
1
2
3
4
5
6
7
8
9
10
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