Module:Bananas

From The Sims Wiki, a collaborative database for The Sims series
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