Merge pull request #248 from itsmontoya/patch-1

Update ch02-00-guessing-game-tutorial.md
This commit is contained in:
Carol (Nichols || Goulding) 2016-09-06 13:53:26 -04:00 committed by GitHub
commit 3ae744e99a

View File

@ -188,6 +188,7 @@ Lets move forward:
```rust,ignore
io::stdin().read_line(&mut guess)
.expect("Failed to read line");
```
We included the input/output functionality from the standard library with use
std::io; on the first line of the program. We are now calling an associated