module(..., package.seeall); function printDict(t) if not (t) then return end for k, v in pairs(t) do print(k, v) end end