summaryrefslogtreecommitdiff
path: root/exercises/variables/variables6.rs
blob: a8520122c5e93fcfe3124a902b5e5c70ba69ee8d (plain)
1
2
3
4
5
6
7
8
9
// variables6.rs
// Execute `rustlings hint variables6` or use the `hint` watch subcommand for a hint.

// I AM NOT DONE

const NUMBER = 3;
fn main() {
    println!("Number {}", NUMBER);
}