mirror of
https://github.com/MartinThoma/LaTeX-examples.git
synced 2025-04-25 14:28:05 +02:00
5 lines
No EOL
203 B
Haskell
5 lines
No EOL
203 B
Haskell
data Bool = False | True
|
|
data Color = Red | Green | Blue | Indigo | Violet
|
|
data Tree a = Leaf a | Branch (Tree a) (Tree a)
|
|
data Point = Point Float Float deriving (Show)
|
|
data Tree t = Node t [Tree t] |