Documentation for this module may be created at Module:Sandbox/Jmorgan (WMF)/Grants navbar/doc

local p = {}
function p.hello(frame)
	local arg2 = frame.args[2] or "green"
    return 'Hello, my ' .. frame.args[1] .. ' is ' .. arg2
end
return p