The page has not been checked
Documentation for this module may be created at Module:Sandbox/Hasley/doc
local p = {} function p.hello(frame) local name = frame.args[1] return "Hello, " .. name .. "!" end return p