Difference between revisions of "Module:Bananas"

From Roleplay UK Wiki
Jump to navigation Jump to search
(Add test module)
 
m (Jaffa moved page Module:Banana to Module:Bananas without leaving a redirect)
 
(No difference)

Latest revision as of 15:12, 15 April 2019

Example Lua module that contains a single function.

hello

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

See also

wikipedia:Category:Module example


-- For unit tests, see [[Module:Bananas/testcases]]
local p = {}

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

return p