Advertisement
Guest User

Untitled

a guest
Dec 24th, 2016
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. datatype none = Nil
  2. datatype ('a,'b, 'c) abctree = Leaf of none*none*none
  3.                         | Br1 of 'a * (('a,'b, 'c) abctree) * (('a,'b, 'c) abctree)
  4.                         | Br2 of 'b * (('b,'b, 'c) abctree) * (('b,'b, 'c) abctree)
  5.                         | Br2 of 'c * (('c,'c, 'c) abctree) * (('c,'c, 'c) abctree)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement