2018-02-22 06:09:53 +00:00
|
|
|
// functions3.rs
|
2015-09-18 02:12:00 +01:00
|
|
|
// Make me compile! Scroll down for hints :)
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
call_me();
|
|
|
|
}
|
|
|
|
|
|
|
|
fn call_me(num: i32) {
|
|
|
|
for i in 0..num {
|
|
|
|
println!("Ring! Call number {}", i + 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// This time, the function *declaration* is okay, but there's something wrong
|
|
|
|
// with the place where we're calling the function.
|