local f,e = loadstring("return "..matches[2])
if not f then
f,e = assert(loadstring(matches[2])) end
local a,b,c = f()
if a ~= nil then echo ("A: ") display(a,nil,1) end
if b ~= nil then echo ("B: ") display(b,nil,1) end
if c ~= nil then echo ("C: ") display(c,nil,1) end
if e ~= nil then echo ("Er: ") display(e,nil,1) end