1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2025-01-24 04:16:19 +02:00

9 lines
156 B
Rust
Raw Normal View History

2024-05-21 01:47:57 +02:00
// TODO: Fix the compiler error.
2015-09-16 20:19:24 -04:00
fn main() {
let x = 3;
2024-05-21 01:47:57 +02:00
println!("Number {x}");
x = 5; // Don't change this line
println!("Number {x}");
2015-09-16 20:19:24 -04:00
}