summaryrefslogblamecommitdiff
path: root/54a-60/54a.hs
blob: 9b39576865ae4a576656e5edcae6ef306f136860 (plain) (tree)
1
2
3


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

-- Haskell is type-safe, so there is no solution.