1 2 3 4 5 6
module Tree4 where import Tree tree4 = Branch 1 (Branch 2 Empty (Branch 4 Empty Empty)) (Branch 2 Empty Empty)