From cc2636a200ac595175f27f4cd0a9fb4454506b7b Mon Sep 17 00:00:00 2001
From: Succ <33795198+DevDoggo@users.noreply.github.com>
Date: Sun, 29 Apr 2018 23:00:38 +0200
Subject: [PATCH] Got 'em

---
 a1_guessing_game/README.md | 18 +++++++++++-------
 1 file changed, 11 insertions(+), 7 deletions(-)

diff --git a/a1_guessing_game/README.md b/a1_guessing_game/README.md
index 82d1567..9fbd060 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
 ```
-
-
-- 
GitLab