summaryrefslogtreecommitdiff
path: root/solutions/02_functions/functions3.rs
diff options
context:
space:
mode:
authormo8it <mo8it@proton.me>2024-05-21 02:43:18 +0200
committermo8it <mo8it@proton.me>2024-05-21 02:43:18 +0200
commitd0b843d6c4a99636d3dc6caf3ceebea14cb3b07d (patch)
tree2021b096bdd07d37abbf71ed1df3b0b58753f67a /solutions/02_functions/functions3.rs
parent0f4c42d54ea7322a4ee0ae7036c058c3061e80e9 (diff)
Add solutions to functions
Diffstat (limited to 'solutions/02_functions/functions3.rs')
-rw-r--r--solutions/02_functions/functions3.rs11
1 files changed, 10 insertions, 1 deletions
diff --git a/solutions/02_functions/functions3.rs b/solutions/02_functions/functions3.rs
index 4e18198..c581c42 100644
--- a/solutions/02_functions/functions3.rs
+++ b/solutions/02_functions/functions3.rs
@@ -1 +1,10 @@
-// Solutions will be available before the stable release. Thank you for testing the beta version 🥰
+fn call_me(num: u32) {
+ for i in 0..num {
+ println!("Ring! Call number {}", i + 1);
+ }
+}
+
+fn main() {
+ // `call_me` expects an argument.
+ call_me(5);
+}