summaryrefslogtreecommitdiffhomepage
path: root/haskell.html.markdown
diff options
context:
space:
mode:
authorAndre Polykanine A.K.A. Menelion Elensúlë <andre@oire.org>2017-09-10 22:26:33 +0300
committerAndre Polykanine A.K.A. Menelion Elensúlë <andre@oire.org>2017-09-10 22:26:33 +0300
commit177db388313bfc4aa538ee4bfa54d5b72a09537a (patch)
tree9b2fde557ef11f48385144f3513f0c1ab5b9c312 /haskell.html.markdown
parent8c7e26537e1b0718bafb37cf423b2afe21cf8da2 (diff)
[haskell/en] Added Happy Learn Haskell Tutorial. Fixed #2177
Diffstat (limited to 'haskell.html.markdown')
-rw-r--r--haskell.html.markdown3
1 files changed, 2 insertions, 1 deletions
diff --git a/haskell.html.markdown b/haskell.html.markdown
index 70ef8fb2..266cf11b 100644
--- a/haskell.html.markdown
+++ b/haskell.html.markdown
@@ -444,5 +444,6 @@ qsort (p:xs) = qsort lesser ++ [p] ++ qsort greater
There are two popular ways to install Haskell: The traditional [Cabal-based installation](http://www.haskell.org/platform/), and the newer [Stack-based process](https://www.stackage.org/install).
You can find a much gentler introduction from the excellent
-[Learn you a Haskell](http://learnyouahaskell.com/) or
+[Learn you a Haskell](http://learnyouahaskell.com/),
+[Happy Learn Haskell Tutorial](http://www.happylearnhaskelltutorial.com/) or
[Real World Haskell](http://book.realworldhaskell.org/).