summaryrefslogtreecommitdiff
path: root/exercises/functions/functions3.rs
diff options
context:
space:
mode:
Diffstat (limited to 'exercises/functions/functions3.rs')
-rwxr-xr-xexercises/functions/functions3.rs42
1 files changed, 42 insertions, 0 deletions
diff --git a/exercises/functions/functions3.rs b/exercises/functions/functions3.rs
new file mode 100755
index 0000000..b17543b
--- /dev/null
+++ b/exercises/functions/functions3.rs
@@ -0,0 +1,42 @@
+// functions3.rs
+// Make me compile! Scroll down for hints :)
+
+fn main() {
+ call_me();
+}
+
+fn call_me(num: i32) {
+ for i in 0..num {
+ 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.