summaryrefslogtreecommitdiff
path: root/exercises/01_variables/variables1.rs
blob: 56408f3532b62dc4b31c44de1c98b68eb0d9ebbf (plain)
1
2
3
4
5
6
7
8
9
10
11
// variables1.rs
//
// Make me compile!
//
// Execute `rustlings hint variables1` or use the `hint` watch subcommand for a
// hint.

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