-
Notifications
You must be signed in to change notification settings - Fork 13.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Book: Standard Input is out-of-date #23760
Comments
Thanks! These are the ones we can't run automated tests for :( |
Also, not sure if this is a typo or not since I am new to Rust (started learning yesterday!) but the nightly version of the docs has this instead: corefn main() {
println!("Type something!");
let input = std::old_io::stdin().read_line().ok().expect("Failed to read line");
println!("{}", input);
} I'm not sure what |
After posting this inquiry on StackOverflow Shepmaster gave the following workaround that will hopefully help whoever has this problem: fn main() {
println!("Type something: ");
let mut s = String::new();
let input = std::io::stdin().read_line(&mut s).ok().expect("Failed to read line!");
println!("Here's what you said: {}", s);
} |
This was originally used to set up the guessing game, but that no longer exists. This version uses `old_io`, and updating it involves talking about `&mut` and such, which we haven't covered yet. So, for now, let's just remove it. Fixes rust-lang#23760
This is also an issue here |
That's for alpha 2. For that release, it should be fine, but regardless, that release is out. |
This was originally used to set up the guessing game, but that no longer exists. This version uses `old_io`, and updating it involves talking about `&mut` and such, which we haven't covered yet. So, for now, let's just remove it. Fixes #23760
…nd-slices chapter) Remove the last sentence about standard io chapter. Additional Fixes rust-lang#23760
Remove the last sentence about standard io chapter. Additional Fixes #23760
http://doc.rust-lang.org/book/standard-input.html
When running the old I/O Standard library, I get an error that the compiler won't admit.
Example:
The text was updated successfully, but these errors were encountered: