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

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