Files
rustlings/solutions/01_variables/variables6.rs
T

7 lines
123 B
Rust
Raw Normal View History

2026-07-19 17:01:21 -07:00
// The type of constants must always be annotated.
const NUMBER: u64 = 3;
fn main() {
println!("Number: {NUMBER}");
}