This website works better with JavaScript
Página inicial
Explorar
Ajuda
Entrar
CNI
/
HaskellCourse
Observar
3
Favorito
0
Fork
0
Arquivos
Issues
0
Pull Requests
0
Wiki
Ver código fonte
Create binary tree type
DricomDragon
5 anos atrás
pai
ee01510045
commit
867d9acb2f
1 arquivos alterados
com
2 adições
e
0 exclusões
Visão dividida
Mostrar estatísticas do Diff
2
0
tree.hs
+ 2
- 0
tree.hs
Ver arquivo
@@ -0,0 +1,2 @@
+data BinaryTree = Leaf | Node Integer BinaryTree BinaryTree
+