RosettaCodeData/Task/Hello-world-Text/C2/hello-world-text.c2

8 lines
129 B
Plaintext

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