2018-02-22 06:09:53 +00:00
|
|
|
// functions3.rs
|
2022-07-12 10:08:29 +01:00
|
|
|
// Execute `rustlings hint functions3` or use the `hint` watch subcommand for a hint.
|
2015-09-18 02:12:00 +01:00
|
|
|
|
2019-11-11 12:38:24 +00:00
|
|
|
// I AM NOT DONE
|
|
|
|
|
2015-09-18 02:12:00 +01:00
|
|
|
fn main() {
|
|
|
|
call_me();
|
|
|
|
}
|
|
|
|
|
2021-04-04 08:43:25 +01:00
|
|
|
fn call_me(num: u32) {
|
2015-09-18 02:12:00 +01:00
|
|
|
for i in 0..num {
|
|
|
|
println!("Ring! Call number {}", i + 1);
|
|
|
|
}
|
|
|
|
}
|