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

11 lines
89 B
Raku

struct A {
a : int
}
terra foo(a : &A)
return a
end
print(foo(terralib.new(A,{3})))