Skip to content
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

Closed
KingOfThePirates opened this issue Mar 26, 2015 · 5 comments · Fixed by #23787 or #23838
Closed

Book: Standard Input is out-of-date #23760

KingOfThePirates opened this issue Mar 26, 2015 · 5 comments · Fixed by #23787 or #23838

Comments

@KingOfThePirates
Copy link

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:

use std::old_io; // error: use of unstable library feature 'old_io'
                 // warning: use of deprecated item, #[warn(deprecated)] on by default
fn main() {
    println!("Type something!");

    let input = old_io::stdin().read_line().ok().expect("Failed to read line"); // error: use of unstable library feature 'old_io'
                                                                                // error: use of unstable library feature 'old_io'
                                                                                // warning: use of deprecated item, #[warn(deprecated)] on by default
                                                                                // warning: use of deprecated item, #[warn(deprecated)] on by default
    println!("{}", input);

}
@steveklabnik
Copy link
Member

Thanks! These are the ones we can't run automated tests for :(

@makramkd
Copy link

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 corefn is: I'm assuming it should just be fn? See : http://doc.rust-lang.org/book/standard-input.html

@makramkd
Copy link

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);
}

steveklabnik added a commit to steveklabnik/rust that referenced this issue Mar 28, 2015
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
@kaungst
Copy link

kaungst commented Mar 28, 2015

This is also an issue here
http://doc.rust-lang.org/1.0.0-alpha.2/book/guessing-game.html

@steveklabnik
Copy link
Member

That's for alpha 2. For that release, it should be fine, but regardless, that release is out.

bors added a commit that referenced this issue Mar 29, 2015
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
kgv pushed a commit to kgv/rust that referenced this issue Mar 29, 2015
…nd-slices chapter)

Remove the last sentence about standard io chapter.

Additional Fixes rust-lang#23760
bors added a commit that referenced this issue Mar 30, 2015
Remove the last sentence about standard io chapter.

Additional Fixes #23760
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
4 participants