Advertisement
Guest User

Untitled

a guest
Apr 24th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. type value =
  2. | Num of float
  3. | String of string
  4. | List of value list
  5.  
  6. type value =
  7. | Num of float
  8. | String of string
  9. | List of my_list
  10. and my_list =
  11. | Cons of value * my_list
  12. | nil
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement