summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAdam Bard <github@adambard.com>2013-07-09 10:34:49 -0700
committerAdam Bard <github@adambard.com>2013-07-09 10:34:49 -0700
commit7d01c382043264ea4a68de8adc80a253d9de12d8 (patch)
tree440c060c4e7b10d63ccb688ec2bff60cd928a2e4
parentcd388529e2fbed35aa98377194086ca0fff3904d (diff)
parent2ad7cacc625e37b7e70112363842aa609e7b87ec (diff)
Merge pull request #117 from lubomir/patch-1
Add link to Real World Haskell
-rw-r--r--haskell.html.markdown5
1 files changed, 3 insertions, 2 deletions
diff --git a/haskell.html.markdown b/haskell.html.markdown
index 34df4d08..be7d8669 100644
--- a/haskell.html.markdown
+++ b/haskell.html.markdown
@@ -412,5 +412,6 @@ qsort (p:xs) = qsort lesser ++ [p] ++ qsort greater
Haskell is easy to install. Get it [here](http://www.haskell.org/platform/).
-You can find a much gentler introduction from the excellent [Learn you a Haskell](http://learnyouahaskell.com/)
-
+You can find a much gentler introduction from the excellent
+[Learn you a Haskell](http://learnyouahaskell.com/) or
+[Real World Haskell](http://book.realworldhaskell.org/).