1
0
Fork 0
mirror of https://github.com/notohh/rustlings.git synced 2024-12-22 00:18:09 -05:00
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}");
}