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

21 lines
182 B
Perl

function makeloop(N,body)
return quote
for i = 0, N do
body
end
end
end
terra stuff()
var a = 0;
[makeloop(10,quote
a = a + 1
end)]
return a
end
print(stuff())