7 lines
123 B
Rust
Raw Permalink Normal View History

2025-04-15 12:21:11 -04:00
// The type of constants must always be annotated.
const NUMBER: u64 = 3;
fn main() {
println!("Number: {NUMBER}");
}