rustlings/exercises/functions/functions2.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

13 lines
219 B
Rust

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