1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2025-01-24 04:16:19 +02:00

7 lines
125 B
Rust
Raw Normal View History

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