Documentation for this module may be created at Module:Sandbox/minhducsun2002/doc

--minhducsun2002 - Google Code-in 2019, Introduction to Lua in Wikipedia

local p = {}

p.Hi = function(frame)
	strName = frame.args.name or "Jimmy"
	return "Hello from Lua to my friend " .. strName .. ".<br>"
end

function p.hello( frame )
	return "Hello, world!"
end

return p