diff --git a/exercises/variables/variables5.rs b/exercises/variables/variables5.rs index 175eebb3..9a0d71ad 100644 --- a/exercises/variables/variables5.rs +++ b/exercises/variables/variables5.rs @@ -1,11 +1,13 @@ // variables5.rs // Make me compile! Execute the command `rustlings hint variables5` if you want a hint :) -// I AM NOT DONE +// I AM 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); + { + let number = 3; + println!("Number plus two is : {}", number + 2); + } }