local p = {}
function p.hello( frame )
local args=frame.args
output = "Bob"
if args[1] == "1"
then
Message = "Cahuna"
else
Message = args[1]
end
if args[1] == "1"
then
output = output.."Cahuna"
else
output = output..args[1]
end
return output
end
return p