rustlings/exercises/functions/functions3.rs
2019-07-05 17:06:56 +02:00

43 lines
354 B
Rust
Executable file

// functions3.rs
// Make me compile! Scroll down for hints :)
fn main() {
call_me(5);
}
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.