Guest User

Untitled

a guest
Jul 21st, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. fn main() {
  2. let greater_than_forty_two = (0..100)
  3. .find(|x| *x > 42);
  4.  
  5. match greater_than_forty_two {
  6. Some(_) => println!("Found a match!"),
  7. None => println!("No match found :("),
  8. }
  9. }
Add Comment
Please, Sign In to add comment