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

9 lines
155 B
Perl

C = terralib.includecstring [[
int foo = 4;
const int foo2 = 5;
]]
terra t()
C.foo = C.foo + 1;
return C.foo + C.foo2
end
assert(t() == 10)