rustlings/functions/functions3.rs

42 lines
337 B
Rust
Raw Normal View History

2015-09-18 07:12:00 +06:00
// Make me compile! Scroll down for hints :)
fn main() {
2016-12-30 16:05:22 +07:00
call_me(5);
2015-09-18 07:12:00 +06:00
}
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.