This website works better with JavaScript
Página Principal
Explorar
Ajuda
Iniciar Sessão
CNI
/
HaskellCourse
Vigiar
3
Colocar Estrela
0
Fork
0
Ficheiros
Problemas
0
Pull Requests
0
Wiki
Ver Fonte
Create binary tree type
DricomDragon
há 5 anos atrás
pai
ee01510045
commit
867d9acb2f
1 ficheiros alterados
com
2 adições
e
0 exclusões
Visão Dividida
Mostrar Estatísticas Diff
2
0
tree.hs
+ 2
- 0
tree.hs
Ver Ficheiro
@@ -0,0 +1,2 @@
+data BinaryTree = Leaf | Node Integer BinaryTree BinaryTree
+