Vedant-asati a5382eb242 d1
2024-12-27 19:00:40 +05:30

9 lines
160 B
Rust

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