This website works better with JavaScript
Domů
Procházet
Nápověda
Přihlásit se
radu
/
LaTeX-examples
Sledovat
1
Oblíbit
0
Rozštěpit
0
Soubory
Úkoly
0
Pull Requesty
0
Wiki
Strom:
9fa7cdfea0
Větve
Značky
master
LaTeX-examples
/
documents
/
Programmierparadigmen
/
scripts
/
haskell
/
binary-tree.hs
binary-tree.hs
82 B
Historie
Surový
1
2
data Tree a = Empty | Node a (Tree a) (Tree a)
deriving (Show)