8 lines
129 B
Text
8 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;
|
||
|
|
}
|