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/functions2.rs Normal file
View File

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