summaryrefslogtreecommitdiff
path: root/exercises/01_variables/variables1.rs
blob: f83b44d415abe29d4573976523aa208ac02e7db1 (plain)
1
2
3
4
5
6
fn main() {
    // TODO: Add the missing keyword.
    x = 5;

    println!("x has the value {x}");
}