Files
linguist/samples/Terra/recoverfromerror.t
2016-01-28 11:22:27 +07:00

15 lines
163 B
Perl

terra what()
return " " / 1
end
dostuff = macro(function()
pcall(what.compile,what)
return 4
end)
terra foobar()
return dostuff()
end
assert(4 == foobar())