2
0
Fork 0
mirror of https://github.com/MartinThoma/LaTeX-examples.git synced 2025-04-26 06:48:04 +02:00
LaTeX-examples/documents/Programmierparadigmen/scripts/haskell/binary-tree.hs

2 lines
82 B
Haskell
Raw Normal View History

2014-03-25 19:48:20 +01:00
data Tree a = Empty | Node a (Tree a) (Tree a)
deriving (Show)