Files
comp3958/lectures/07/bstree.ml
T

3 lines
75 B
OCaml

(* bstree with records *)
type 'a t = L | N of {v: 'a; l: 'a t; r: 'a t};;