summaryrefslogtreecommitdiff
path: root/exercises/01_variables/variables1.rs
blob: 3035bfaef434e61debb7bdcffe114a4171edf603 (plain)
1
2
3
4
5
6
// Make me compile!

fn main() {
    x = 5;
    println!("x has the value {}", x);
}