Module:Bananas

Revision as of 05:49, 31 July 2020 by Ianbirtwistle (talk | contribs) (1 revision imported)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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