1
0
Fork 0
mirror of https://github.com/rust-lang/rustlings.git synced 2024-05-21 16:16:11 +02:00
rustlings/exercises/functions/functions3.rs

15 lines
237 B
Rust
Raw Normal View History

2018-02-22 07:09:53 +01:00
// functions3.rs
// Make me compile! Execute `rustlings hint functions3` for hints :)
2015-09-18 03:12:00 +02:00
// I AM NOT DONE
2015-09-18 03:12:00 +02:00
fn main() {
call_me();
}
fn call_me(num: i32) {
for i in 0..num {
println!("Ring! Call number {}", i + 1);
}
}