Merge pull request #601 from 117503445/patch-1

fix duplicate title in guessing-game-tutorial
This commit is contained in:
KaiserY 2022-05-13 13:06:35 +08:00 committed by GitHub
commit 2a7d8b10e9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -115,8 +115,6 @@ let mut bananas = 5; // 可变
### 接收用户输入
### 接收用户输入
回忆一下,我们在程序的第一行使用 `use std::io;` 从标准库中引入了输入/输出功能。现在调用 `io` 库中的函数 `stdin`
```rust,ignore