Jump to content

Module:Sandbox/ActiveTech11: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
No edit summary
No edit summary
Line 2: Line 2:


--Working with Modules
--Working with Modules
local p = {}

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

return p

Revision as of 13:49, 21 December 2019

--ActiveTech11 Google Code-In 2019, Introduction to Lua in Wikipedia

--Working with Modules