summaryrefslogtreecommitdiff
path: root/variables/src/main.rs
blob: a57709ccf419c68482c0c12bf1a6584803da0328 (plain)
1
2
3
4
5
6
fn main() {
    let mut x = 5;
    println!("The value of x is: {x}");
    x = 6;
    println!("The value of x is: {x}");
}