Module:Sandbox: Difference between revisions

From Tildeverse Wiki
(Created page with "local M = {} function M.hello(whom) if whom == nil then return 'Hi!' end return Hello, .. whom .. '!' end return M")
(No difference)

Revision as of 23:57, 3 June 2021

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