first commit
This commit is contained in:
5
lib/tree.ml
Normal file
5
lib/tree.ml
Normal file
@@ -0,0 +1,5 @@
|
||||
open List
|
||||
open Types
|
||||
|
||||
let combine (tr1 : 'a tree) (tr2 : 'a tree) (topBranch : 'a) : 'a tree =
|
||||
Branch (topBranch, tr1 :: tr2 :: [])
|
||||
Reference in New Issue
Block a user