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:


--Lua Task 2-Working with Modules-Wikimedia
--Lua Task 2-Working with Modules-Wikimedia

local p = {}

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

return p

Revision as of 13:54, 21 December 2019

--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

return p