Jump to content

Module:Sandbox/ActiveTech11

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by ActiveTech11 (talk | contribs) at 09:56, 21 December 2019. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
--ActiveTech11 Google Code-In 2019, Introduction to Lua in Wikipedia

--Working with Modules
local p = {}

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

return p