RosettaCodeData/Task/Hello-world-Text/Terra/hello-world-text.terra
2023-07-01 13:44:08 -04: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