Advertisement
Guest User

Untitled

a guest
Jul 17th, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. fn example(a: Option<bool>) -> i32 {
  2. match a {
  3. Some(_) => 1,
  4. None => {
  5. println!("It was none");
  6. }
  7. }
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement