Enough philosophy, let's talk code, let's talk Hello world!
hello.c2
module hello_world;
import stdio as io;
fn i32 main(i32 argc, char** argv) {
io.printf("Hello World!\n");
return 0;
}
Spot the six differences from C: Scroll down for the answer
.
.
.
.
.
.
.
.
Here it is: