From Wikipedia, the free encyclopedia
local p = {}
function p.hello( frame )
local args=frame.args
output = "Bob "
local done = 0
--
if args[1] == "" then
output = output.."Test1 "
done = 1
else
output = output..args[1]
end
return output
end
return p