Closed
Description
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();
}
Metadata
Metadata
Assignees
Labels
No labels