Jump to content

Module:Sandbox/Srflp: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
Srflp (talk | contribs)
No edit summary
Srflp (talk | contribs)
No edit summary
Line 5: Line 5:


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



Revision as of 19:00, 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, world!"
end

return p