summaryrefslogtreecommitdiff
path: root/old_curriculum/functions/functions2.rs
diff options
context:
space:
mode:
Diffstat (limited to 'old_curriculum/functions/functions2.rs')
-rw-r--r--old_curriculum/functions/functions2.rs42
1 files changed, 42 insertions, 0 deletions
diff --git a/old_curriculum/functions/functions2.rs b/old_curriculum/functions/functions2.rs
new file mode 100644
index 0000000..1cf95c3
--- /dev/null
+++ b/old_curriculum/functions/functions2.rs
@@ -0,0 +1,42 @@
+// functions2.rs
+// Make me compile! Scroll down for hints :)
+
+fn main() {
+ call_me(3);
+}
+
+fn call_me(num) {
+ for i in 0..num {
+ println!("Ring! Call number {}", i + 1);
+ }
+}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+// Rust requires that all parts of a function's signature have type annotations,
+// but `call_me` is missing the type annotation of `num`.