I’m reading the Rust Book.

Chapter 1 - Getting Started

println!("Hello, world!"); 
// println! is a macro, not a normal function

Cargo

Cargo is the Rust package manager.

Chapter 2 - Programming a Guessing Game