Module:Sandbox

From Tildeverse Wiki
Revision as of 23:57, 3 June 2021 by Smlckz (talk | contribs) (Created page with "local M = {} function M.hello(whom) if whom == nil then return 'Hi!' end return Hello, .. whom .. '!' end return M")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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