Module:GuyPerfect

From Inkipedia, the Splatoon wiki
Revision as of 01:15, 22 February 2018 by GuyPerfect (talk | contribs)

Documentation for this module may be created at Module:GuyPerfect/doc

local p = {}

function p.hello(frame)
    local ret = "Arguments: " .. #frame.args .. "\n"

    for k,v in pairs(frame.args) do
        ret = ret .. "*" .. k .. " = " .. v .. "\n"
    end

    return ret
end

return p