This repository contains examples and exercises for learning the Rust programming language, following best practices for enterprise-level applications and adhering to clean code principles.
You can run each example using Cargo. Replace <example_name>
with the filename without the .rs
extension (e.g., 001-hello-world
).
cargo run --bin <example_name>
For example, to run the first example:
cargo run --bin 001-hello-world