Jump to content

Module:Sandbox/ActiveTech11

From Wikipedia, the free encyclopedia
This is the current revision of this page, as edited by ActiveTech11 (talk | contribs) at 14:00, 21 December 2019. The present address (URL) is a permanent link to this version.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)
--ActiveTech11 Google Code-In 2019, Introduction to Lua in Wikipedia

--Lua Task 2-Working with Modules-Wikimedia

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