rustlings/exercises/01_variables/variables3.rs

7 lines
126 B
Rust
Raw Permalink Normal View History

2024-10-28 20:46:17 +00:00
fn main() {
// TODO: Change the line below to fix the compiler error.
let x: i32 = 42;
println!("Number {x}");
}