A collection of Rust projects and exercises from my learning path.
100-exercises-to-learn-rust/— structured exercises and the accompanying book contentself_code_practice/— smaller experiments and practice snippets
Each folder is its own Cargo project. Example:
cd self_code_practice
cargo run- Build fluency with core Rust syntax and ownership
- Practice real-world patterns (error handling, traits, collections)
- Grow a portfolio of small, runnable examples
$ cargo run
Hello from my Rust practice project!
- Build artifacts are ignored (
target/). - Feel free to explore individual projects independently.