tweak haskell links
authorJim <jim.pryor@nyu.edu>
Mon, 2 Feb 2015 16:26:34 +0000 (11:26 -0500)
committerJim <jim.pryor@nyu.edu>
Mon, 2 Feb 2015 16:26:34 +0000 (11:26 -0500)
_learning_haskell.mdwn
installing.mdwn

index fadee5e..9ebbe05 100644 (file)
@@ -25,7 +25,7 @@
 *   [What I Wish I Knew When Learning Haskell](http;//dev.stephendiehl.com/hask)
 
 <!-- -->
 *   [What I Wish I Knew When Learning Haskell](http;//dev.stephendiehl.com/hask)
 
 <!-- -->
-*   [Haskell Wiki](https://wiki.haskell.org), with a link to download the [Haskell Platform](https://www.haskell.org/platform)
+*   [Haskell Wiki](https://wiki.haskell.org), with a link to download the [Haskell Platform](https://www.haskell.org/platform/contents.html)
 *   [New Haskell Wiki](https://new-www.haskell.org)
 
 <!-- -->
 *   [New Haskell Wiki](https://new-www.haskell.org)
 
 <!-- -->
index 8cc4ae3..eaf2cc9 100644 (file)
@@ -421,7 +421,7 @@ Like Scheme, Haskell has a couple of different implementations. The dominant one
 *   **gcc** and **llvm/clang** and **Xcode** and **MinGW** are names for other compilers on various systems. Oftentimes these will be used during the installation process to get GHC up and running. Some of the strategies described below will help you install these if they're not already on your machine.
 *   **alex** and **happy** and **haddock** are names of various Haskell helper programs that GHC uses to get up and running.
 *   **[Cabal](https://www.haskell.org/cabal)** is a "package manager" for Haskell. It allows you to install libraries or extensions that other people have built. (Usually those are published at the [Hackage](https://hackage.haskell.org) web site.) Some of these are experimental and may not always work; others are quite fundamental and are almost de facto parts of what people expect in a Haskell system.
 *   **gcc** and **llvm/clang** and **Xcode** and **MinGW** are names for other compilers on various systems. Oftentimes these will be used during the installation process to get GHC up and running. Some of the strategies described below will help you install these if they're not already on your machine.
 *   **alex** and **happy** and **haddock** are names of various Haskell helper programs that GHC uses to get up and running.
 *   **[Cabal](https://www.haskell.org/cabal)** is a "package manager" for Haskell. It allows you to install libraries or extensions that other people have built. (Usually those are published at the [Hackage](https://hackage.haskell.org) web site.) Some of these are experimental and may not always work; others are quite fundamental and are almost de facto parts of what people expect in a Haskell system.
-*   **[Haskell Platform](https://www.haskell.org/platform)** is a standard bundle that includes a specific version of GHC, plus specific versions of some of the most popular libraries or extensions. This is updated once or twice a year. The current version is 2014.2.0.0, from August 2014. It includes GHC version 7.8.3.
+*   **[Haskell Platform](https://www.haskell.org/platform/contents.html)** is a standard bundle that includes a specific version of GHC, plus specific versions of some of the most popular libraries or extensions. This is updated once or twice a year. The current version is 2014.2.0.0, from August 2014. It includes GHC version 7.8.3.
 
 The easiest way to get up and running with Haskell/GHC is to install the Haskell Platform. Here's how to do that **on Windows**:
 
 
 The easiest way to get up and running with Haskell/GHC is to install the Haskell Platform. Here's how to do that **on Windows**: