summaryrefslogtreecommitdiff
path: root/exercises/02_functions/functions1.rs
diff options
context:
space:
mode:
Diffstat (limited to 'exercises/02_functions/functions1.rs')
-rw-r--r--exercises/02_functions/functions1.rs9
1 files changed, 2 insertions, 7 deletions
diff --git a/exercises/02_functions/functions1.rs b/exercises/02_functions/functions1.rs
index 40ed9a0..a812c21 100644
--- a/exercises/02_functions/functions1.rs
+++ b/exercises/02_functions/functions1.rs
@@ -1,10 +1,5 @@
-// functions1.rs
-//
-// Execute `rustlings hint functions1` or use the `hint` watch subcommand for a
-// hint.
-
-// I AM NOT DONE
+// TODO: Add some function with the name `call_me` without arguments or a return value.
fn main() {
- call_me();
+ call_me(); // Don't change this line
}