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

10 lines
141 B
Perl

local c = terralib.includec("stdio.h")
terralib.tree.printraw(getmetatable(c).errors)
terra main()
c.printf("hello, world\n")
end
main()