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

9 lines
136 B
Perl

local c = terralib.includec("stdio.h")
terra hello()
c.printf("hello, world\n")
end
terralib.saveobj("hello",{main = hello})
hello()