Jump to content

Module:Sandbox/Abdnegm

From Wikipedia, the free encyclopedia
This is the current revision of this page, as edited by Abdnegm (talk | contribs) at 14:56, 21 January 2020. The present address (URL) is a permanent link to this version.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)
--Abdnegm Google Code-in 2019, Introduction to Lua in Wikipedia
--Lua Task 2 - Working with modules
local p = {}

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

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

return p