diff options
Diffstat (limited to 'exercises/02_functions/functions3.rs')
| -rw-r--r-- | exercises/02_functions/functions3.rs | 16 |
1 files changed, 5 insertions, 11 deletions
diff --git a/exercises/02_functions/functions3.rs b/exercises/02_functions/functions3.rs index 74f44d6..5d5122a 100644 --- a/exercises/02_functions/functions3.rs +++ b/exercises/02_functions/functions3.rs @@ -1,16 +1,10 @@ -// functions3.rs -// -// Execute `rustlings hint functions3` or use the `hint` watch subcommand for a -// hint. - -// I AM NOT DONE - -fn main() { - call_me(); -} - fn call_me(num: u32) { for i in 0..num { println!("Ring! Call number {}", i + 1); } } + +fn main() { + // TODO: Fix the function call. + call_me(); +} |
