Module:User:Mr. Stradivarius/sandbox
Appearance
![]() | This is the module sandbox page for Module:User:Mr. Stradivarius. |
local p = {}
function p.main(frame)
local ret = {}
for k, v in pairs(frame.args) do
table.insert(ret, string.format('key: %s', tostring(k)))
table.insert(ret, string.format('key type: %s', type(k)))
table.insert(ret, string.format('value: %s', tostring(value)))
end
return table.concat(ret, '\n')
end
return p