mirror of
https://github.com/rust-lang/rustlings
synced 2024-11-05 00:00:12 +00:00
15 lines
237 B
Rust
15 lines
237 B
Rust
// functions3.rs
|
|
// Make me compile! Execute `rustlings hint functions3` for hints :)
|
|
|
|
// I AM NOT DONE
|
|
|
|
fn main() {
|
|
call_me();
|
|
}
|
|
|
|
fn call_me(num: i32) {
|
|
for i in 0..num {
|
|
println!("Ring! Call number {}", i + 1);
|
|
}
|
|
}
|