There are no
reviewed versions of this page, so it may
not have been checked for adherence to standards.
Documentation for this module may be created at Module:Welcome/Ladsgroup/doc
local p = {}
function p.everyone()
return 'welcome, everyone'
end
function p.byname(frame)
local name = frame.args[1]
if name == nil then
name = 'stranger'
end
return 'Welcome'.. name..'!'
end
return p