Documentation for this module may be created at Module:Sandbox/ycwei982/doc
-- Ycwei982 Google Code-in, Introduction to Lua in Wikipedia
-- Ycwei982 Google Code-in, working with modules
local p = {}
function p.hello(frame)
return "Hello, World!"
end
p.Hi = function(frame)
strName = frame.args.name or "Jimbo"
return "Hello from Lua to my friend " .. strName .. ".<br>"
end
return p