move old files to a separate directory

This commit is contained in:
olivia
2018-04-26 21:29:11 +02:00
parent 32ac403da5
commit 5e89d1e888
53 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,42 @@
// functions3.rs
// 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.