1
0
Fork 0
mirror of https://github.com/rust-lang/rustlings.git synced 2024-05-25 05:26:12 +02:00
rustlings/exercises/functions/functions2.rs
2018-11-09 20:31:14 +01:00

43 lines
358 B
Rust
Executable File

// functions2.rs
// Make me compile! Scroll down for hints :)
fn main() {
call_me(3);
}
fn call_me(num) {
for i in 0..num {
println!("Ring! Call number {}", i + 1);
}
}
// Rust requires that all parts of a function's signature have type annotations,
// but `call_me` is missing the type annotation of `num`.