ମଡ୍ୟୁଲ:Bananas

ଉଇକିପିଡ଼ିଆ‌ରୁ

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