summaryrefslogblamecommitdiff
path: root/70b-73/70b.hs
blob: dbeb5b54bce7763ba844d60c1606955ecfd22414 (plain) (tree)
1
2
3


                                                 
data Tree a = Node a [Tree a] deriving (Eq, Show)

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