Skip to content

Commit 87dcf4c

Browse files
committed
Add one source & GHC pragma
1 parent e6205d0 commit 87dcf4c

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,16 @@
55
66

77
### Sources
8-
- [Real World Haskell](http://book.realworldhaskell.org/read/),
8+
- [Real World Haskell](http://book.realworldhaskell.org/read),
99
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),
1111
referred to as `LYH`.
1212
- [CIS 194: Introduction to Haskell](http://www.seas.upenn.edu/~cis194),
1313
**TODO**.
1414
- [DATA 61: Functional Programming Course](https://github.com/data61/fp-course),
1515
**TODO**.
16+
- [What I Wish I Know When Learning Haskell](http://dev.stephendiehl.com/hask),
17+
**TODO**.
1618

1719

1820
### Random explorations

rwh03.hs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
{-# LANGUAGE
2+
StandaloneDeriving,
3+
GADTs
4+
#-}
5+
16
-- RWH Chapter 3. Defining Types, Streamlining Functions --
27

38

tying_the_knot.hs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
{-# LANGUAGE
2+
StandaloneDeriving,
3+
GADTs
4+
#-}
5+
16
-- From https://wiki.haskell.org/Tying_the_Knot
27
data DList a where
38
DLNode :: Eq a => DList a -> a -> DList a -> DList a

0 commit comments

Comments
 (0)