rustlings/exercises/functions/functions3.rs
Kartheek, Gottipati c5a0b0316d solutions
2022-05-03 15:30:09 -04:00

13 lines
220 B
Rust

// functions3.rs
// Make me compile! Execute `rustlings hint functions3` for hints :)
fn main() {
call_me(3);
}
fn call_me(num: u32) {
for i in 0..num {
println!("Ring! Call number {}", i + 1);
}
}