rustlings/exercises/01_variables/variables6.rs

7 lines
125 B
Rust
Raw Normal View History

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