[haskell/en] Added Happy Learn Haskell Tutorial. Fixed #2177

This commit is contained in:
Andre Polykanine A.K.A. Menelion Elensúlë 2017-09-10 22:26:33 +03:00
parent 8c7e26537e
commit 177db38831

View File

@ -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/).