Module:Bananas

From CannaQAWiki
Jump to navigationJump to search

Module:Bananas (talk · edit · hist · links · doc · subpages · tests – results · sandbox – edit – subpages)

Example Lua module that contains a single function.

hello

  • ​{{#invoke:bananas|hello}}​ → Hello, world!

See also


-- For unit tests, see [[Module:Bananas/testcases]]
local p = {}
 
function p.hello()
    return "Hello, world!"
end
 
return p