summaryrefslogtreecommitdiff
path: root/Tree.hs
blob: dcfef1a38bdefda07834da6fe39c481bf547b0c0 (plain)
1
2
3
4
module Tree where

data Tree a = Empty | Branch a (Tree a) (Tree a)
    deriving (Show, Eq)