let list = [1, 2, 3];let iterator = list.iter().rev();for x in iterator { println!("x is {:?}", x); }