rustlings/exercises/functions/functions3.rs
Mustakim-Khan 0646013237 seance 1
2021-04-13 17:33:22 +02:00

15 lines
222 B
Rust

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