Skip to content

Commit

Permalink
fix(variables5): confine the answer further
Browse files Browse the repository at this point in the history
let mut number = 3; can lead to a correct answer, so the comment helps to direct the users to the intended answer.
  • Loading branch information
kayuapi committed Jun 7, 2021
1 parent a2f0401 commit 48ffcbd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exercises/variables/variables5.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
// I AM NOT DONE

fn main() {
let number = "T-H-R-E-E";
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);
Expand Down

0 comments on commit 48ffcbd

Please sign in to comment.