RosettaCodeData/Task/Hello-world-Text/Terra/hello-world-text.terra
2016-12-05 23:44:36 +01:00

6 lines
121 B
Text

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