rustlings/exercises/functions/functions3.rs
IloveKanade b1dbf15193 my rustlng answer 3.1 ~ 4.1.2
Signed-off-by: IloveKanade <xjlgxlgx@gmail.com>
2022-04-24 17:30:27 +08:00

15 lines
238 B
Rust

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