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

23 lines
221 B
Perl

a = {}
local c = terralib.includec("stdio.h")
a.c = quote
c.printf("hello\n")
end
a.b = quote
var d = 4
a.c
return d
end
terra foo()
a.c
a.b
end
local test = require("test")
test.eq(foo(),4)