Jump to content

Module:Sandbox/AngC10: Difference between revisions

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


--AngC10 Google Code-in, Working with Modules
--AngC10 Google Code-in, Working with Modules
local p = {} -- p stands for package

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

return p

Revision as of 05:07, 20 November 2018

--AngC10 Google Code-in, Introduction to Lua in Wikipedia

--AngC10 Google Code-in, Working with Modules
local p = {} -- p stands for package

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

return p