diff options
Diffstat (limited to 'exercises/02_functions/functions2.rs')
| -rw-r--r-- | exercises/02_functions/functions2.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/02_functions/functions2.rs b/exercises/02_functions/functions2.rs index 2c773c6..a2cffc1 100644 --- a/exercises/02_functions/functions2.rs +++ b/exercises/02_functions/functions2.rs @@ -1,5 +1,5 @@ // TODO: Add the missing type of the argument `num` after the colon `:`. -fn call_me(num:) { +fn call_me(num: i32) { for i in 0..num { println!("Ring! Call number {}", i + 1); } |
