2 lines
58 B
OCaml
2 lines
58 B
OCaml
|
type ast = Leaf of string | Node of ast list | Int of int
|