local p = {}
function p.hello( frame )
local args=frame.args
output = "Bob"
-- check 1
if args[1] == "1" then
Message = "Test1 "
else
Message = args[1]
end
-- check 2
if args[2] == "5" then
output = output.."Test2 "
else
output = output..args[2]
end
return output
end
return p