local p = {} function p.hello(frame) local parent = frame:getParent() if parent.args["testarg"] then return "Test"..parent.args["testarg"] else return "No test" end end return p