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