Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.11 KB | None | 0 0
  1. fn main() {
  2. let tup = (500, 6.4, 1);
  3.  
  4. let (x, y, z) = tup;
  5.  
  6. println!("The value of y is: {}", y);
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement