rustlings/exercises/functions/functions3.rs

14 lines
284 B
Rust
Raw Normal View History

2018-02-22 09:09:53 +03:00
// functions3.rs
// Make me compile! Execute `rustlings hint functions3` for hints :)
2015-09-18 04:12:00 +03:00
2022-05-28 03:04:58 +03:00
// Need to pass in an unsigned 32 bit num to get this to work.
2015-09-18 04:12:00 +03:00
fn main() {
2022-05-28 03:04:58 +03:00
call_me(10);
2015-09-18 04:12:00 +03:00
}
fn call_me(num: u32) {
2015-09-18 04:12:00 +03:00
for i in 0..num {
println!("Ring! Call number {}", i + 1);
}
}