This is my first project in Rust, a classic "Guess the Number" game.
The goal is to get familiar with the language, its ecosystem, and best practices.
The program:
- Generates a random number between
1and100. - Asks the user to input their guess.
- Compares the input with the secret number.
- Informs if the number is too small, too big, or if you have won π.
- Rust is fast, safe, and widely used in modern ecosystems.
- Itβs a great way to train your mind in concepts like memory management, concurrency, and safety.
- Learning it step by step prepares me to work on real-world projects.
Clone the repository and run the game:
git clone https://github.com/eldanniklk/guessing_game.git
cd guessing_game
cargo run