Guest User

Untitled

a guest
Dec 12th, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. use std::collections::HashMap;
  2.  
  3. fn main() {
  4. let mut cock = HashMap::new();
  5. cock.insert("pussy", 1);
  6.  
  7. cock.iter().any(|(_, &x)| x == _);
  8. }
Add Comment
Please, Sign In to add comment