diff --git a/a1_guessing_game/README.md b/a1_guessing_game/README.md index 82d15676391529fd44c64ffba0173899a28e8054..9fbd060b63ce8f0bad9b7cdddb62dbdf2a398151 100644 --- a/a1_guessing_game/README.md +++ b/a1_guessing_game/README.md @@ -1,17 +1,21 @@ # Rust Guessing Game +### Description +The program is a typical guessing game. You're asked to guess a specific number between 1 and 100, for which the program will tell you it was incorrect or correct. It will also comment on how many times you've guessed, probably with the intention to degrade the user for his failures. The program is a part of the course D7018E. + ### Dependencies #### Crates -rand -colored +* rand +* colored ### How to Build ``` bash git clone https://github.com/DevDoggo/D7018E-Rust-Course.git cd D7018E-Rust-Course/a1_guessing_game -cargo build -cargo run - +cargo build --release +``` +### How to run +In the programs directory: +``` bash +cargo run --release ``` - -