This website works better with JavaScript
Home
Esplora
Aiuto
Accedi
CNI
/
HaskellCourse
Segui
3
Vota
0
Forka
0
File
Problemi
0
Pull Requests
0
Wiki
Sfoglia il codice sorgente
Create binary tree type
DricomDragon
5 anni fa
parent
ee01510045
commit
867d9acb2f
1 ha cambiato i file
con
2 aggiunte
e
0 eliminazioni
Visualizzazione separata
Mostra Diff Stats
2
0
tree.hs
+ 2
- 0
tree.hs
Vedi File
@@ -0,0 +1,2 @@
+data BinaryTree = Leaf | Node Integer BinaryTree BinaryTree
+