rustlings/exercises/01_variables/variables3.rs
Denis-Cosmin NUTIU 06573e87ac initial commit
2024-10-28 22:46:17 +02:00

6 lines
126 B
Rust

fn main() {
// TODO: Change the line below to fix the compiler error.
let x: i32 = 42;
println!("Number {x}");
}