مودول:Bananas

من ويكيپيديا

موضيل:Ml

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