My Rust learning journey
To accompany Rustlings questions, I have AI draft me problem sets to accompany the reading in The Rust Programming Language Book. These are the problem sets and their solutions.
Each .rs file in src/bin is its own independent program with its own fn main() call. You run a specific one with
cargo check --bin problem_set_1 # To check compilation
cargo run --bin problem_set_1 # To build and run binary