rustlings/solutions/01_variables/variables6.rs

7 lines
123 B
Rust
Raw Normal View History

2024-05-21 02:47:57 +03:00
// The type of constants must always be annotated.
const NUMBER: u64 = 3;
fn main() {
println!("Number: {NUMBER}");
}