I'm about to get into Haskell and I'm a bit confused why I'm recommended to install both "ghc" and "haskell-platform" via brew. Isn't ghc a haskell implementation/compiler? When do one need the platform?
|
|
The Haskell Platform is a collection of compilers, tools and libraries for Haskell. It currently specifies that GHC is included in the platform. Compliant Haskell Platform packages will install GHC without additional work required on the part of the user. |
|||
|
|
|
The Haskell Platform is a collection of stuff. GHC is one specific component of that stuff. That's the short answer. The slightly longer answer is that usually you want to install the Haskell Platform, because then you get lots of stuff installed all in one go, without having to manually set up all the pieces one at a time. That's the purpose of the Haskell Platform. To give some historical perspective, before the Haskell Platform was invented, GHC itself used to come with a random grab-bag of libraries. The Haskell Platform was invented so that somebody less overworked could decide which libraries should and shouldn't be included out of the box (i.e., so the GHC people could stop thinking about libraries and go back to thinking about GHC). It's been quite successful in that respect. |
|||
|
|