Exercises from The Book
rustc --version # check version
rustup update
rustup doc # open local docs
cargo --version
cargo new my_project
rustc main.rs # create an executable in the current directory
cargo build # create an executable in target/debug/main
carbo build --release # build with optimizations
cargo run # compile and run the executable
cargo check # compile without producing the executable