summaryrefslogtreecommitdiff
path: root/solutions/01_variables/variables6.rs
blob: 25b7a1e43e604c38a8297fc86bbfb46496e03247 (plain)
1
2
3
4
5
6
// The type of constants must always be annotated.
const NUMBER: u64 = 3;

fn main() {
    println!("Number: {NUMBER}");
}