This morning has me showing some interest into the Rust programming language. So i've started reading the Rust book first.
Went for the online version with quizzes from Brown University, The Rust Programming Language
It starts out with installing Rust, for me as a Linux user:

curl --proto '=https' --tlsv1.3 https://sh.rustup.rs -sSf | sh

Some basic commands after that are

rustup update           # update rust versie
rustc               # compile a rust program
rustfmt             # format a rust program
cargo new [projectname]     # start a new cargo project
cargo build         # build a cargo project
cargo run           # run a cargo project
cargo check         # check a cargo project for abiltiy to compile
cargo doc --open        # create some project documentation and open it
cargo update            # update project dependancy's

- Harold de Bruijn