rustlings/exercises/functions/functions2.rs
____marcell c91e063bec wip
2020-08-25 01:01:52 +00:00

13 lines
220 B
Rust

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