mirror of
https://github.com/Noratrieb/simple-std.git
synced 2026-01-14 08:25:04 +01:00
fix missing ! in readme
This commit is contained in:
parent
b71fe50c08
commit
51554aa8d7
1 changed files with 1 additions and 1 deletions
|
|
@ -42,7 +42,7 @@ fn main() {
|
|||
let input = prompt("Guess: ").parse::<i32>().expect("not a number");
|
||||
match input.cmp(&number) {
|
||||
Ordering::Less => println!("Too Small"),
|
||||
Ordering::Greater => println("Too Big"),
|
||||
Ordering::Greater => println!("Too Big"),
|
||||
Ordering::Equal => {
|
||||
println!("You win!");
|
||||
break;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue