Skip to content

Instantly share code, notes, and snippets.

@carols10cents
Created April 4, 2018 15:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save carols10cents/aef4d4c293daf3d10b1053d8e54ea0c3 to your computer and use it in GitHub Desktop.
Save carols10cents/aef4d4c293daf3d10b1053d8e54ea0c3 to your computer and use it in GitHub Desktop.
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