RosettaCodeData/Task/Hello-world-Text/Terra/hello-world-text.terra

7 lines
121 B
Plaintext

C = terralib.includec("stdio.h")
terra hello(argc : int, argv : &rawstring)
C.printf("Hello world!\n")
return 0
end