rustlings/.history/exercises/functions/functions2_20230726202023.rs
Byoungyoon Park 872a8cbcd5 20230726
2023-07-26 23:03:48 +09:00

15 lines
255 B
Rust

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