rustlings/exercises/02_functions/functions2.rs

17 lines
298 B
Rust
Raw Normal View History

2018-02-22 09:09:53 +03:00
// functions2.rs
//
// Execute `rustlings hint functions2` or use the `hint` watch subcommand for a
// hint.
2015-09-18 04:12:00 +03:00
2015-09-18 04:12:00 +03:00
fn main() {
call_me(3);
}
2024-01-31 18:40:34 +03:00
fn call_me(num: i8) {
// chose i8 because it's the smallest integer type
2015-09-18 04:12:00 +03:00
for i in 0..num {
println!("Ring! Call number {}", i + 1);
}
}