-
Notifications
You must be signed in to change notification settings - Fork 12.8k
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
Remove standard io chapter from the book #23787
Conversation
(rust_highfive has picked a reviewer for you, use r? to override) |
Shouldn't this also modify SUMMARY.md? |
Other than that though r=me |
@bors: r=alexcrichton rollup |
📌 Commit 51ce2df has been approved by |
☔ The latest upstream changes (presumably #23796) made this pull request unmergeable. Please resolve the merge conflicts. |
🔒 Merge conflict |
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
@bors: r=alexcrichton rollup |
📌 Commit 9fb54f8 has been approved by |
After further review, even #23800 doesn't do what I thought it was going to do. But at least I can get user input. But when do we learn how to read and write files? |
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
Because this is being removed in the moment doesn't mean that it's gone forever. It just doesn't fit currently. Also, I'm working on docs for IO in general, so this will be in the API docs as well. |
Do you think you could provide us noobies, even if just here, for a copy and paste that reads a plain text file and stores each line as a different variable?
This may help write the docs for IO, too. |
This was originally used to set up the guessing game, but that no longer
exists. This version uses
old_io
, and updating it involves talkingabout
&mut
and such, which we haven't covered yet. So, for now, let'sjust remove it.
Fixes #23760