Jump to content

Module:Sandbox/AngC10

From Wikipedia, the free encyclopedia
This is the current revision of this page, as edited by AngC10 (talk | contribs) at 05:18, 20 November 2018. The present address (URL) is a permanent link to this version.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)
--AngC10 Google Code-in, Introduction to Lua in Wikipedia

--AngC10 Google Code-in, Working with Modules
local p = {} -- p stands for package

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