fn main() { let mut x = 5; println!("Hello World"); if x < 7 { x = 10; } println!("x = {}", x); }