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

18 lines
185 B
Perl

local a = global(double)
terra getptr()
return &a
end
local b = getptr()
local c = terralib.pointertolightuserdata(b)
print(b,c,a)
terra foo(a : &&int)
end
foo(c)
print("DONE")