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

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