summaryrefslogtreecommitdiff
path: root/exercises/01_variables/variables6.rs
blob: 9f47682519ec6bee40a70f994e118157c148f150 (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.

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