diff options
author | Adam Bard <github@adambard.com> | 2015-12-05 10:30:06 +0700 |
---|---|---|
committer | Adam Bard <github@adambard.com> | 2015-12-05 10:30:06 +0700 |
commit | 1c44407311f43af990ec1d387b8c5e65a8056d77 (patch) | |
tree | ff8d0e16378fac9a093338eedca5aa76b7b4bb59 | |
parent | 1b95655b3cb227e43aecbfd844763eda1a07957c (diff) | |
parent | 410cc03b09870be6da4931725120b44f93b3bcfc (diff) |
Merge pull request #2049 from dogweather/master
[Haskell] Updating dev environment installation info
-rw-r--r-- | haskell.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/haskell.html.markdown b/haskell.html.markdown index 936744a0..34eee748 100644 --- a/haskell.html.markdown +++ b/haskell.html.markdown @@ -426,7 +426,7 @@ qsort (p:xs) = qsort lesser ++ [p] ++ qsort greater greater = filter (>= p) xs ``` -Haskell is easy to install. Get it [here](http://www.haskell.org/platform/). +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 |