Created
April 4, 2018 15:21
-
-
Save carols10cents/aef4d4c293daf3d10b1053d8e54ea0c3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fn main() { | |
let s = String::from("book"); | |
// Add code here that calls the pluralize function | |
println!( | |
"I have one {}, you have two {}", | |
s, | |
you_add_something_here, | |
); | |
} | |
// Add appropriate parameters, return values, and implementation to this function | |
fn pluralize() {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment