diff options
author | Robb Shecter <robb@weblaws.org> | 2015-12-03 14:27:24 -0800 |
---|---|---|
committer | Robb Shecter <robb@weblaws.org> | 2015-12-03 14:27:24 -0800 |
commit | 410cc03b09870be6da4931725120b44f93b3bcfc (patch) | |
tree | 9b54a805bf71ee4553c22f47e2fab8c35fd32be2 /haskell.html.markdown | |
parent | 3e0216bbcc30e98b57bd39b27bafc78ceb5cbe7e (diff) |
Updating dev environment installation info
Diffstat (limited to 'haskell.html.markdown')
-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 |