1
0
Fork 0
mirror of https://github.com/notohh/rustlings.git synced 2025-01-13 02:18:08 -05:00
rustlings/exercises/02_functions/functions3.rs
2024-04-17 23:34:27 +02:00

9 lines
132 B
Rust

fn main() {
call_me();
}
fn call_me(num: u32) {
for i in 0..num {
println!("Ring! Call number {}", i + 1);
}
}