This website works better with JavaScript
Inicio
Explorar
Ayuda
Iniciar sesión
CNI
/
HaskellCourse
Seguir
3
Destacar
0
Fork
0
Archivos
Incidencias
0
Pull Requests
0
Wiki
Explorar el Código
Create binary tree type
DricomDragon
hace 5 años
padre
ee01510045
commit
867d9acb2f
Se han
modificado 1 ficheros
con
2 adiciones
y
0 borrados
Dividir vista
Mostrar estadísticas de diff
2
0
tree.hs
+ 2
- 0
tree.hs
Ver fichero
@@ -0,0 +1,2 @@
+data BinaryTree = Leaf | Node Integer BinaryTree BinaryTree
+