2 rust comment * This is the example given by www.rust-lang.org
4 rust comment // Line comments work too
6 rust code let nums = [1, 2];
7 rust code let noms = ["Tim", "Eston", "Aaron", "Ben"];
9 rust code let mut odds = nums.iter().map(|&x| x * 2 - 1);
11 rust code for num in odds {
13 rust code println!("{:s} says hello from a lightweight thread!", noms[num]);