Arrays and collections / Iterators

let list = [123];
let iterator = list.iter().rev();

for x in iterator {
    println!("x is {:?}", x); 
}