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 13:54, 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

--Lua Task 2-Working with Modules-Wikimedia

local p = {}

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

return p