data Foo = Foo { bar :: Int, baz :: String } deriving ShowBezeichnungen (benannte Notation)
data Foo
ist Typname
Foo { .. }
ist Konstruktor
bar, baz
sind Komponenten
x :: Foo x = Foo { bar = 3, baz = "hal" }Bezeichnungen (positionelle Notation)
data Foo = Foo Int String y = Foo 3 "bar"