summaryrefslogtreecommitdiff
path: root/exercises/variables/variables4.rs
blob: 77f1e9ab013f8e4135f0064a9602be4364a8e6f7 (plain)
1
2
3
4
5
6
7
8
9
// variables4.rs
// Make me compile! Execute the command `rustlings hint variables4` if you want a hint :)

// I AM NOT DONE

fn main() {
    let x: i32;
    println!("Number {}", x);
}