1 2 3 4 5 6 7
fn main() { let mut x = 5; println!("The value of x = {x}"); x = 6; println!("The value of x = {x}"); }