summaryrefslogtreecommitdiff
path: root/exercises/variables/variables1.rs
diff options
context:
space:
mode:
authormarisa <mokou@posteo.de>2019-11-11 17:21:06 +0100
committerGitHub <noreply@github.com>2019-11-11 17:21:06 +0100
commitec2d4bd3ee665f2a4c79dd42c41078223074d4c1 (patch)
tree6106b922559491112240f6465f965cf811caf5b8 /exercises/variables/variables1.rs
parentce9fa6ebbfdc3e7585d488d9409797285708316f (diff)
parent9a9007abae86c3b1b1c09778a6544ced54ea4453 (diff)
Merge branch 'master' into refactor-hints
Diffstat (limited to 'exercises/variables/variables1.rs')
-rw-r--r--exercises/variables/variables1.rs7
1 files changed, 7 insertions, 0 deletions
diff --git a/exercises/variables/variables1.rs b/exercises/variables/variables1.rs
index 65452c2..5ddc37d 100644
--- a/exercises/variables/variables1.rs
+++ b/exercises/variables/variables1.rs
@@ -1,6 +1,13 @@
// 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, you the `I AM NOT DONE` comment below.
+
+// I AM NOT DONE
+
fn main() {
x = 5;
println!("x has the value {}", x);