Module:Bananas

From Infogalactic: the planetary knowledge core
Jump to: navigation, search

Module:Bananas (talk<dot-separator>edit<dot-separator>hist<dot-separator>links<dot-separator>doc<dot-separator>subpages<dot-separator>tests (results)<dot-separator>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