main.rs 128 Bytes Raw Blame History Permalink 1 2 3 4 5 6 fn main() { let mut x = 5; println!("The value of x is: {}", x); x = 6; println!("The value of x is: {}", x); }