Advertisement
Guest User

Untitled

a guest
Nov 27th, 2014
218
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. type good
  2. type bad
  3. type okay
  4.  
  5. type ('a, 'b) incl =
  6. | Incl_good : (good, okay) incl
  7. | Incl_bad : (bad, okay) incl
  8.  
  9. type _ tree =
  10. | Node : 'a tree * 'b tree * ('a, 'c) incl * ('b, 'c) incl -> 'c tree
  11. | Leaf : good tree
  12. | Stump : bad tree
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement