The example for concurrency on the [30-minute Intro](http://doc.rust-lang.org/nightly/intro.html) does not compile and run. ``` use std::thread; fn main() { let guards: Vec<_> = (0..10).map(|_| { thread::scoped(|| { println!("Hello, world!"); }) }).collect(); } ```