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/Exec8/doc
local p = {}
function p.everyone()
return 'Welcome, everyone!'
end
function p.sum( frame)
local num1 = frame.args[1]
local num2 = frame.args[2]
return num1 + num2
end
return p