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

17 lines
162 B
Perl

a = global(int) --testing variable with no initializer
terra foo()
a = 3
end
terra bar()
return a
end
local test = require("test")
foo()
test.eq(bar(),3)