Explorar el Código

Create binary tree type

DricomDragon hace 5 años
padre
commit
867d9acb2f
Se han modificado 1 ficheros con 2 adiciones y 0 borrados
  1. 2 0
      tree.hs

+ 2 - 0
tree.hs

@@ -0,0 +1,2 @@
+data BinaryTree = Leaf | Node Integer BinaryTree BinaryTree
+