[haskell/en] Add up-to-date community version of LYAH tutorial (#4341)

* Add up-to-date community version of LYAH tutorial

* Update haskell.html.markdown
This commit is contained in:
Stanislav (Stanley) Modrak 2023-08-25 05:06:35 +01:00 committed by GitHub
parent 0379989cfb
commit f6c70b2716
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,6 +3,7 @@ language: Haskell
filename: learnhaskell.hs filename: learnhaskell.hs
contributors: contributors:
- ["Adit Bhargava", "http://adit.io"] - ["Adit Bhargava", "http://adit.io"]
- ["Stanislav Modrak", "https://stanislav.gq"]
--- ---
Haskell was designed as a practical, purely functional programming Haskell was designed as a practical, purely functional programming
@ -602,6 +603,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). 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 You can find a much gentler introduction from the excellent
[Learn you a Haskell](http://learnyouahaskell.com/), [Learn you a Haskell](http://learnyouahaskell.com/) (or [up-to-date community version](https://learnyouahaskell.github.io/)),
[Happy Learn Haskell Tutorial](http://www.happylearnhaskelltutorial.com/) or [Happy Learn Haskell Tutorial](http://www.happylearnhaskelltutorial.com/) or
[Real World Haskell](http://book.realworldhaskell.org/). [Real World Haskell](http://book.realworldhaskell.org/).