This website works better with JavaScript
Home
Explore
Help
Sign In
CNI
/
HaskellCourse
Watch
3
Star
0
Fork
0
Files
Issues
0
Pull Requests
0
Wiki
Browse Source
Create binary tree type
DricomDragon
5 years ago
parent
ee01510045
commit
867d9acb2f
1 changed files
with
2 additions
and
0 deletions
Split View
Show Diff Stats
2
0
tree.hs
+ 2
- 0
tree.hs
View File
@@ -0,0 +1,2 @@
+data BinaryTree = Leaf | Node Integer BinaryTree BinaryTree
+