Skip to content

Commit

Permalink
finish functions2
Browse files Browse the repository at this point in the history
  • Loading branch information
cyz-ing committed Jan 29, 2025
1 parent a634557 commit 06cbe2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exercises/functions/functions2.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ fn main() {
call_me(3);
}

fn call_me(num:) {
fn call_me(num:i32) {
for i in 0..num {
println!("Ring! Call number {}", i + 1);
}
Expand Down

0 comments on commit 06cbe2e

Please sign in to comment.