Module:Bananas

From Wiktionary
Documentation icon Module documentation[view] [change] [history] [refresh]

This is an example Lua module that has a single function.

Usage[change]

  • {{#invoke:Bananas|hello}} → Hello, world!
local p = {}

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

return p