rustlings/exercises/01_variables/variables3.rs

7 lines
121 B
Rust
Raw Normal View History

2015-09-17 03:19:24 +03:00
fn main() {
2024-05-21 02:47:57 +03:00
// TODO: Change the line below to fix the compiler error.
let x: i32;
2024-05-21 02:47:57 +03:00
println!("Number {x}");
2015-09-17 03:19:24 +03:00
}