I am quite new to OCaml, so apologies if this is a silly question. I have this OCaml file:
type tree = | Node of int * tree * tree | Leaf of int let t =