summaryrefslogtreecommitdiff
path: root/exercises/01_variables/variables6.rs
blob: 4a040fddaca58dc6c2c25da1a07cd594c592a816 (plain)
1
2
3
4
5
6
// TODO: Change the line below to fix the compiler error.
const NUMBER = 3;

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