-- testlocal p =
function p.test(frame)
local args = frame:getParent.args
local output = 'test' t2 = for x, y in pairs(frame.args) do output = output .. '
x: ' .. x .. ' y: ' .. y end
for x, y in pairs(t2) do output = output .. '
x: ' .. x .. ' y: ' .. y end
for x, y in pairs(frame.args or args) do output = output .. '
x: ' .. x .. ' y: ' .. y end return outputendreturn p