Skip to content

Instantly share code, notes, and snippets.

@hugoledoux
Created February 14, 2019 13:11
Show Gist options
  • Save hugoledoux/c70970c6864e725762381662d2872d24 to your computer and use it in GitHub Desktop.
Save hugoledoux/c70970c6864e725762381662d2872d24 to your computer and use it in GitHub Desktop.
testing rust
fn main() {
let test = vec![1, 2, 3];
let index = test.iter().position(|&r| r.to_string() == 2).unwrap();
println!("{}", index);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment