local p = {} function p.hello(frame) if not frame.args.name then return 'Hello World' end return 'Hello' .. ' ' .. frame.args.name end return p