Guest User

Untitled

a guest
Dec 15th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. fn main() {
  2. struct Fruit {
  3. weight: u8,
  4. height: u8,
  5. tastiness: u8,
  6. }
  7. enum Fruits {
  8. Pineapple(Fruit{
  9. 2,
  10. 16,
  11. 10,
  12. }),
  13. Apple(Fruit{
  14. 1,
  15. 4,
  16. 6,
  17. }),
  18. Lemon(Fruit{
  19. 1,
  20. 2,
  21. 0,
  22. })
  23. }
  24.  
  25.  
  26. }
Add Comment
Please, Sign In to add comment