packages feed

packed-data-0.1.0.2: examples/Tree.hs

module Tree where

data Tree a = Leaf a | Node (Tree a) (Tree a)