ماڈیول: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