summaryrefslogtreecommitdiff
path: root/Tree4.hs
blob: 533899c282f2cd4eda8a02a3e09452b7ff080316 (plain)
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)