A repository to play with the Rust language.
The Hello World directory hosts the obligaotry Hello World program. Point to note is that the println statement is a macro rather than a function call. This is denoted by the exclamation mark.
This is the hello world application created with the cargo build system. cargo build
creates the debug version. cargo build --release
creates the release version.