Module:Sandbox/ycwei982

Revision as of 05:19, 30 October 2018 by imported>Ycwei982
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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