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

10
old_curriculum/ex2.rs Normal file
View File

@@ -0,0 +1,10 @@
// ex2.rs
// Make me compile!
fn something() -> String {
"hi!"
}
fn main() {
println!("{}", something());
}