This website works better with JavaScript
Accueil
Explorer
Aide
Connexion
CNI
/
HaskellCourse
Suivre
3
Voter
0
Fork
0
Fichiers
Tickets
0
Pull Requests
0
Wiki
Parcourir la source
Create binary tree type
DricomDragon
il y a 5 ans
Parent
ee01510045
commit
867d9acb2f
1 fichiers modifiés
avec
2 ajouts
et
0 suppressions
Vue séparée
Afficher les stats Diff
2
0
tree.hs
+ 2
- 0
tree.hs
Voir le fichier
@@ -0,0 +1,2 @@
+data BinaryTree = Leaf | Node Integer BinaryTree BinaryTree
+