Browse Source

Create binary tree type

DricomDragon 5 năm trước cách đây
mục cha
commit
867d9acb2f
1 tập tin đã thay đổi với 2 bổ sung0 xóa
  1. 2 0
      tree.hs

+ 2 - 0
tree.hs

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