diff options
Diffstat (limited to 'exercises/functions/functions3.rs')
| -rw-r--r-- | exercises/functions/functions3.rs | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/exercises/functions/functions3.rs b/exercises/functions/functions3.rs deleted file mode 100644 index 74f44d6..0000000 --- a/exercises/functions/functions3.rs +++ /dev/null @@ -1,16 +0,0 @@ -// 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); - } -} |
