Skip to content

Instantly share code, notes, and snippets.

@bugaevc
Last active May 2, 2016 12:08
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 bugaevc/512d6cc8641d8d5786005f7043697e4f to your computer and use it in GitHub Desktop.
Save bugaevc/512d6cc8641d8d5786005f7043697e4f to your computer and use it in GitHub Desktop.
// this does not compile
fn middle_name(full_name: &str) -> &str {
full_name.split_whitespace().nth(1).unwrap()
}
fn main() {
let res;
{
let name = String::from("Harry James Potter");
res = middle_name(&name);
}
assert_eq!(res, "James");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment