Skip to content

Commit 48ffcbd

Browse files
authored
fix(variables5): confine the answer further
let mut number = 3; can lead to a correct answer, so the comment helps to direct the users to the intended answer.
1 parent a2f0401 commit 48ffcbd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

exercises/variables/variables5.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// I AM NOT DONE
55

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

0 commit comments

Comments
 (0)