mirror of
https://github.com/Noratrieb/simple-std.git
synced 2026-01-14 16:35:06 +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");
|
let input = prompt("Guess: ").parse::<i32>().expect("not a number");
|
||||||
match input.cmp(&number) {
|
match input.cmp(&number) {
|
||||||
Ordering::Less => println!("Too Small"),
|
Ordering::Less => println!("Too Small"),
|
||||||
Ordering::Greater => println("Too Big"),
|
Ordering::Greater => println!("Too Big"),
|
||||||
Ordering::Equal => {
|
Ordering::Equal => {
|
||||||
println!("You win!");
|
println!("You win!");
|
||||||
break;
|
break;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue