Loop the guessing game
This commit is contained in:
parent
5e325d386a
commit
cab74a2477
1 changed files with 17 additions and 14 deletions
|
@ -6,6 +6,8 @@ fn main() {
|
|||
println!("Guess the number!");
|
||||
let secret_number = rand::thread_rng().gen_range(1..=100);
|
||||
println!("The secret number is: {secret_number}");
|
||||
|
||||
loop {
|
||||
println!("Please input your guess.");
|
||||
|
||||
let mut guess = String::new();
|
||||
|
@ -23,3 +25,4 @@ fn main() {
|
|||
Ordering::Equal => println!("You win!"),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue