summaryrefslogtreecommitdiff
path: root/exercises/01_variables/variables6.rs
blob: 4746331ba6d793d0ceadf617d8e4438b156479a2 (plain)
1
2
3
4
const NUMBER = 3;
fn main() {
    println!("Number {}", NUMBER);
}