2025-04-15 12:21:11 -04:00

9 lines
165 B
Rust

// TODO: Fix the compiler error.
fn main() {
let mut x: i32 = 3;
println!("Number {x}");
x = 5; // Don't change this line
println!("Number {x}");
}