Guest User

Untitled

a guest
Jan 23rd, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. fn main() {
  2. let mut v = vec![1,2];
  3. match (v.pop(), v.pop()) {
  4. (Some(z), Some(y)) => println!("y: {}\nz: {}", y, z),
  5. _ => unreachable!(),
  6. }
  7. }
Add Comment
Please, Sign In to add comment