This module was made as a sandbox for the user Picky Bear. This documentation is kept to prevent redlinks.
local p = {} --p stands for package function p.hello( frame ) local name = frame.args[1] if name == nil then name = 'n/a' end return "Hello, " .. name .. "!" end return p