Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

📚 The CoCalc Library - books, templates and other resources

132937 views
License: OTHER
1
data Bool = False | True
2
data Color = Red | Green | Blue | Indigo | Violet
3
data Tree a = Leaf a | Branch (Tree a) (Tree a)
4
data Point = Point Float Float deriving (Show)
5
data Tree t = Node t [Tree t]
6