In this repository I will be doing the Rust exercises from the official web page to practice and improve my Rust skills.
src/main.rs
: The entry point of the project. Handles user input to select and run specific exercises.src/exercises
: Contains different modules, each hosting multiple exercises.
To run the project, navigate to the root directory and use the following command:
cargo run
- Add a new function in the respective module (src/exercises).
- Update main.rs to include the new exercise in the selection prompt.
Rust needs to be installed.