mirror of
https://github.com/notohh/rustlings.git
synced 2024-11-22 14:02:22 -05:00
41 lines
336 B
Rust
41 lines
336 B
Rust
// 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.
|