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

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