Module:Bananas

From Laserwiki
Revision as of 15:26, 12 July 2020 by Admin (talk | contribs) (1 revision imported)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Example module referenced by Extension:Scribunto/Lua reference manual


local p = {} --p stands for package
 
function p.hello( frame )
    return "Hello, world!"
end
 
return p