Merge pull request #25583 from lkxed/fix-format-20210405-How-different-programming-languages-do-the-same-thing

[修正格式][tech]: 20210405 How different programming languages do the same thing.md
This commit is contained in:
六开箱 2022-05-10 17:48:49 +08:00 committed by GitHub
commit bace8b6ec1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -202,10 +202,10 @@ else {
Rust
```rust
_ if guess < random => println!("Too low"),
_ if guess > random => println!("Too high"),
_ => {
println!("That's right");
break;
_ if guess > random => println!("Too high"),
_ => {
println!("That's right");
break;
}
```