File tree 3 files changed +14
-2
lines changed
3 files changed +14
-2
lines changed Original file line number Diff line number Diff line change 5
5
6
6
7
7
### Sources
8
- - [ Real World Haskell] ( http://book.realworldhaskell.org/read/ ) ,
8
+ - [ Real World Haskell] ( http://book.realworldhaskell.org/read ) ,
9
9
referred to as ` RWH ` .
10
- - [ Learn You a Haskell for Great Good!] ( http://learnyouahaskell.com/chapters/ ) ,
10
+ - [ Learn You a Haskell for Great Good!] ( http://learnyouahaskell.com/chapters ) ,
11
11
referred to as ` LYH ` .
12
12
- [ CIS 194: Introduction to Haskell] ( http://www.seas.upenn.edu/~cis194 ) ,
13
13
** TODO** .
14
14
- [ DATA 61: Functional Programming Course] ( https://github.com/data61/fp-course ) ,
15
15
** TODO** .
16
+ - [ What I Wish I Know When Learning Haskell] ( http://dev.stephendiehl.com/hask ) ,
17
+ ** TODO** .
16
18
17
19
18
20
### Random explorations
Original file line number Diff line number Diff line change
1
+ {-# LANGUAGE
2
+ StandaloneDeriving,
3
+ GADTs
4
+ #-}
5
+
1
6
-- RWH Chapter 3. Defining Types, Streamlining Functions --
2
7
3
8
Original file line number Diff line number Diff line change
1
+ {-# LANGUAGE
2
+ StandaloneDeriving,
3
+ GADTs
4
+ #-}
5
+
1
6
-- From https://wiki.haskell.org/Tying_the_Knot
2
7
data DList a where
3
8
DLNode :: Eq a => DList a -> a -> DList a -> DList a
You can’t perform that action at this time.
0 commit comments