rustlings/solutions/01_variables/variables6.rs

7 lines
123 B
Rust
Raw Normal View History

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