summaryrefslogtreecommitdiffhomepage
path: root/haskell.html.markdown
diff options
context:
space:
mode:
authorbk2dcradle <ankitsultana@gmail.com>2016-01-05 13:34:10 +0530
committerbk2dcradle <ankitsultana@gmail.com>2016-01-05 13:34:10 +0530
commit0e3ed9579b296e276741f06afe8e0a9834672b9e (patch)
treed01a82820ee8a7fb41583cdbf9119583d3fe8004 /haskell.html.markdown
parenta5730e4ab931b8355704d35ee08acef75435bd83 (diff)
parent4dc5eeda5528047ece4f5798cff6961b0bc21dcb (diff)
Reset to Adambard's
Diffstat (limited to 'haskell.html.markdown')
-rw-r--r--haskell.html.markdown4
1 files changed, 2 insertions, 2 deletions
diff --git a/haskell.html.markdown b/haskell.html.markdown
index 08611e63..34eee748 100644
--- a/haskell.html.markdown
+++ b/haskell.html.markdown
@@ -81,7 +81,7 @@ not False -- True
[5,4..1] -- [5, 4, 3, 2, 1]
-- indexing into a list
-[0..] !! 5 -- 5
+[1..10] !! 3 -- 4
-- You can also have infinite lists in Haskell!
[1..] -- a list of all the natural numbers
@@ -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