This module stands as an example.
local p = {} -- package name
function p.hello(frame) -- new function
to = ""
if frame.args[1] or frame.args.to then
to = "to " .. frame.args[1] .. "" or "to " .. frame.args.to .. ""
end
return "Hello " .. to .. "."
end
return p