This repository has been archived on 2023-03-24. You can view files and clone it, but cannot push or open issues or pull requests.
rustlings-exercises-completed/exercises/functions/functions3.rs

45 lines
371 B
Rust
Raw Normal View History

2018-02-22 00:09:53 -06:00
// functions3.rs
2015-09-17 20:12:00 -05:00
// Make me compile! Scroll down for hints :)
// I AM NOT DONE
2015-09-17 20:12:00 -05:00
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.