Add some exercises about functions!

This commit is contained in:
Carol (Nichols || Goulding)
2015-09-17 21:12:00 -04:00
parent dbfab88e61
commit 6324eeafe7
5 changed files with 177 additions and 0 deletions

41
functions/functions3.rs Normal file
View File

@@ -0,0 +1,41 @@
// 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.