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