p = {} local function test(_args) a = _args.a return a end function p.func(frame) _args = { a = "apple", b = "boy", } return test(_args) end return p