[Rust Guide] 2.3. Number Guessing Game Pt.3 - Comparing Input and Random Number
rust
dev.to
2.3.0. Key Points of This Section In this section, you will learn: How to use match Shadowing Type casting The Ordering type 2.3.1. Game Objectives Generate a random number between 1 and 100 Prompt the player to enter a guess After the guess, the program will tell whether the guess is too big or too small (covered in this section) If the guess is correct, print a congratulatory message and exit the program 2.3.2. Code Implementation This is the code writt