We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The example for concurrency on the 30-minute Intro does not compile and run.
use std::thread; fn main() { let guards: Vec<_> = (0..10).map(|_| { thread::scoped(|| { println!("Hello, world!"); }) }).collect(); }
The text was updated successfully, but these errors were encountered:
Yes, we had to de-stabilize scoped.
scoped
Sorry, something went wrong.
Remove the 30 minute intro
290da6f
Fixes rust-lang#24569.
Auto merge of #24572 - steveklabnik:gh24569, r=brson
ddf25c8
Fixes #24569. Should wait until rust-lang/prev.rust-lang.org#114 is merged.
6a31baa
Successfully merging a pull request may close this issue.
The example for concurrency on the 30-minute Intro does not compile and run.
The text was updated successfully, but these errors were encountered: