summaryrefslogtreecommitdiff
path: root/exercises/variables/variables4.rs
blob: 54491b0a205c113b1b13fa1055d5e715460b396b (plain)
1
2
3
4
5
6
7
8
9
10
11
// variables4.rs
// Execute `rustlings hint variables4` or use the `hint` watch subcommand for a hint.

// I AM NOT DONE

fn main() {
    let x = 3;
    println!("Number {}", x);
    x = 5; // don't change this line
    println!("Number {}", x);
}