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

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