summaryrefslogtreecommitdiff
path: root/exercises/variables
diff options
context:
space:
mode:
Diffstat (limited to 'exercises/variables')
-rw-r--r--exercises/variables/variables1.rs8
-rw-r--r--exercises/variables/variables5.rs2
2 files changed, 3 insertions, 7 deletions
diff --git a/exercises/variables/variables1.rs b/exercises/variables/variables1.rs
index 4a3af73..d1af831 100644
--- a/exercises/variables/variables1.rs
+++ b/exercises/variables/variables1.rs
@@ -1,10 +1,6 @@
// variables1.rs
-// Make me compile! Execute the command `rustlings hint variables1` if you want a hint :)
-
-// About this `I AM NOT DONE` thing:
-// We sometimes encourage you to keep trying things on a given exercise,
-// even after you already figured it out. If you got everything working and
-// feel ready for the next exercise, remove the `I AM NOT DONE` comment below.
+// Make me compile!
+// Execute the command `rustlings hint variables1` if you want a hint :)
// I AM NOT DONE
diff --git a/exercises/variables/variables5.rs b/exercises/variables/variables5.rs
index da37ae9..175eebb 100644
--- a/exercises/variables/variables5.rs
+++ b/exercises/variables/variables5.rs
@@ -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);