MediaWiki:Bananas (edit | talk | history | links | watch | logs)

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