summaryrefslogtreecommitdiff
path: root/exercises/functions/functions3.rs
diff options
context:
space:
mode:
Diffstat (limited to 'exercises/functions/functions3.rs')
-rw-r--r--exercises/functions/functions3.rs32
1 files changed, 1 insertions, 31 deletions
diff --git a/exercises/functions/functions3.rs b/exercises/functions/functions3.rs
index b17543b..b2e90f6 100644
--- a/exercises/functions/functions3.rs
+++ b/exercises/functions/functions3.rs
@@ -1,5 +1,5 @@
// functions3.rs
-// Make me compile! Scroll down for hints :)
+// Make me compile! Execute `rustlings hint functions3` for hints :)
fn main() {
call_me();
@@ -10,33 +10,3 @@ fn call_me(num: i32) {
println!("Ring! Call number {}", i + 1);
}
}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-// This time, the function *declaration* is okay, but there's something wrong
-// with the place where we're calling the function.