rustlings/exercises/01_variables/variables6.rs

7 lines
125 B
Rust
Raw Normal View History

2024-05-20 19:47:57 -04:00
// TODO: Change the line below to fix the compiler error.
const NUMBER = 3;
2024-05-20 19:47:57 -04:00
fn main() {
2024-05-20 19:47:57 -04:00
println!("Number: {NUMBER}");
}