ソースを参照

Create binary tree type

DricomDragon 5 年 前
コミット
867d9acb2f
1 ファイル変更2 行追加0 行削除
  1. 2 0
      tree.hs

+ 2 - 0
tree.hs

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