Ver código fonte

Create binary tree type

DricomDragon 5 anos atrás
pai
commit
867d9acb2f
1 arquivos alterados com 2 adições e 0 exclusões
  1. 2 0
      tree.hs

+ 2 - 0
tree.hs

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