rustlings/exercises/functions/functions2.rs
2023-04-20 05:50:50 -05:00

14 lines
238 B
Rust

// functions2.rs
// Execute `rustlings hint functions2` or use the `hint` watch subcommand for a hint.
fn main() {
call_me(5);
}
fn call_me(num: i16) {
for i in 0..num {
println!("Ring! Call number {}", i + 1);
}
}