1 2 3 4 5 6
fn main() { let x = 3; println!("Number {}", x); x = 5; // don't change this line println!("Number {}", x); }