Create ex2.rs

This commit is contained in:
Carol (Nichols || Goulding) 2015-09-14 22:26:38 -04:00
parent a24f0f9398
commit f238bdc34e
1 changed files with 9 additions and 0 deletions

9
ex2.rs Normal file
View File

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