data Bool = False | True data Maybe a = Nothing | Just a
data Tree a = Leaf | Branch ( Tree a ) a ( Tree a)
Ü: Schlüssel in Blättern
data N = Z | S N