Merge pull request #389 from ICEYSELF/patch-1

Fix #388
This commit is contained in:
KaiserY 2020-03-29 00:11:24 +08:00 committed by GitHub
commit 07a840f7fa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -145,7 +145,7 @@ let mut bar = 5; // 可变
总结一下,`let mut guess = String::new();` 这一行创建了一个可变变量,当前它绑定到一个新的 `String` 空实例上。
回忆一下,我们在程序的第一行使用 `use std::io;` 从标准库中引入了输入/输出功能。现在调用 `io`关联函数 `stdin`
回忆一下,我们在程序的第一行使用 `use std::io;` 从标准库中引入了输入/输出功能。现在调用 `io` 库中的函数 `stdin`
```rust,ignore
io::stdin().read_line(&mut guess)