Vedant-asati a5382eb242 d1
2024-12-27 19:00:40 +05:30

7 lines
123 B
Rust

// The type of constants must always be annotated.
const NUMBER: u64 = 3;
fn main() {
println!("Number: {NUMBER}");
}