Files

9 lines
160 B
Rust
Raw Permalink Normal View History

2026-03-12 20:54:14 -04:00
// TODO: Fix the compiler error.
fn main() {
let mut x = 3;
println!("Number {x}");
x = 5; // Don't change this line
println!("Number {x}");
}