Hello, World!
Now that the Andy C++ interpreter is installed we can write our first program.
First create a file called hello.ndc add the code in Listing 1-1.
print("Hello, world!");
In Andy C++ we don’t need a main function. Semicolons are mandatory, just like they are in Rust. If you already know Rust, Andy C++ will feel very familiar.
$ ndc hello.ndc
Hello, world!