RosettaCodeData/Task/Hello-world-Text/C2/hello-world-text.c2
2023-07-01 13:44:08 -04:00

7 lines
129 B
Text

module hello_world;
import stdio as io;
func i32 main(i32 argc, char** argv) {
io.printf("Hello World!\n");
return 0;
}