2018-02-22 13:09:53 +07:00
|
|
|
// functions2.rs
|
2019-11-11 22:51:38 +07:00
|
|
|
// Make me compile! Execute `rustlings hint functions2` for hints :)
|
2015-09-18 07:12:00 +06:00
|
|
|
|
2019-11-11 19:38:24 +07:00
|
|
|
// I AM NOT DONE
|
|
|
|
|
2015-09-18 07:12:00 +06:00
|
|
|
fn main() {
|
|
|
|
call_me(3);
|
|
|
|
}
|
|
|
|
|
2020-12-27 18:36:38 +07:00
|
|
|
fn call_me(num:) {
|
2015-09-18 07:12:00 +06:00
|
|
|
for i in 0..num {
|
|
|
|
println!("Ring! Call number {}", i + 1);
|
|
|
|
}
|
|
|
|
}
|