summaryrefslogtreecommitdiff
path: root/exercises/variables/variables5.rs
blob: 175eebb35b02db321a6e9d8b7fa8971430e70839 (plain)
1
2
3
4
5
6
7
8
9
10
11
// variables5.rs
// Make me compile! Execute the command `rustlings hint variables5` if you want a hint :)

// I AM NOT DONE

fn main() {
    let number = "T-H-R-E-E"; // don't change this line
    println!("Spell a Number : {}", number);
    number = 3;
    println!("Number plus two is : {}", number + 2);
}