summaryrefslogtreecommitdiff
path: root/exercises/01_variables/variables3.rs
blob: 45a858649b2dc93bf926331abc5c3a95302f6448 (plain)
1
2
3
4
5
6
fn main() {
    // TODO: Change the line below to fix the compiler error.
    let x: i32 = 10;

    println!("Number {x}");
}