Guest User

Untitled

a guest
Jun 22nd, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. fn wut() -> (i32, bool) {
  2. (1, true)
  3. }
  4.  
  5. fn main() {
  6. println!("pair is {:?}", wut());
  7. let (a, b) = wut();
  8. println!("a is {:?}, b is {:?}", a, b);
  9. }
Add Comment
Please, Sign In to add comment