fn main(){ let mut ourArray = [4, 5, 6, 7]; for i in &mut ourArray { *i += *i; } for i in &ourArray { println!("i = {}", i); } }