1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2025-01-22 04:08:38 +02:00
2024-04-17 23:34:27 +02:00

10 lines
132 B
Rust

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