Module:Sandbox

From Tildeverse Wiki
Revision as of 00:05, 4 June 2021 by Smlckz (talk | contribs)

Documentation for this module may be created at Module:Sandbox/doc

local M = {}

function M:hello(whom)
	if whom == nil then return 'Hi!' end
	return [[Hello, ]] .. whom .. '!'
end

return M