rustlings/exercises/functions/functions3.rs

18 lines
282 B
Rust
Raw Normal View History

2018-02-22 13:09:53 +07:00
// functions3.rs
//
// Make me compile!
//
// If you need help, open the corresponding README.md or run: rustlings hint functions3
2015-09-18 07:12:00 +06:00
// I AM NOT DONE
2015-09-18 07:12:00 +06:00
fn main() {
call_me();
}
fn call_me(num: u32) {
2015-09-18 07:12:00 +06:00
for i in 0..num {
println!("Ring! Call number {}", i + 1);
}
}