Module:Bananas

From The Sims Wiki, a collaborative database for The Sims series
This is the current revision of this page, as edited by K6ka (talk | contribs) at 22:01, 6 June 2019 (Created page with "-- For unit tests, see Module:Bananas/testcases local p = {} function p.hello() return "Hello, world!" end return p"). The present address (URL) is a permanent link to this version.
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

This module's documentation page can be edited at Module:Bananas/doc.


Description

This is an example Lua module that contains a single function. It should probably not be used in any serious templates.

Credits

The code was copied from the English Wikipedia.


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

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

return p