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

16 lines
192 B
Perl

function omgfunc()
return 2
end
a = global(0)
terra foo()
[quote a = a + 1 end];
[{quote a = a + 1 end,quote a = a + 1 end}]
return a
end
local test = require("test")
test.eq(foo(),3)