binary-tree.hs 82 B

12
  1. data Tree a = Empty | Node a (Tree a) (Tree a)
  2. deriving (Show)