1
0
Fork 0
mirror of https://github.com/rust-lang/rustlings.git synced 2024-06-03 08:26:17 +02:00
rustlings/exercises/functions/functions3.rs

43 lines
353 B
Rust
Raw Normal View History

2018-02-22 07:09:53 +01:00
// functions3.rs
2015-09-18 03:12:00 +02: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.