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

6 lines
130 B
Rust

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