Jump to content

Module:Sandbox/Srflp: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
Srflp (talk | contribs)
added my username
Srflp (talk | contribs)
No edit summary
Line 1: Line 1:
-- srflp Google Code-in 2017, Introduction to Lua in Wikipedia
-- srflp Google Code-in 2017, Introduction to Lua in Wikipedia
-- [Lua task #03] Create your own Lua module on English Wikipedia

local p = {}

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

return p

Revision as of 18:59, 26 December 2017

-- srflp Google Code-in 2017, Introduction to Lua in Wikipedia
-- [Lua task #03] Create your own Lua module on English Wikipedia

local p = {}

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

return p