Skip to main content

Haskell

Code written in Haskell is guaranteed to have no side effects ... because no one will ever run it? -- XKCD 1312

Install Haskell

Simply run the following command in PowerShell:

winget install -e --id commercialhaskell.stack
Let's test your installation!
  1. Type ghci in PowerShell. This will open Prelude - Haskell's interactive shell.
  2. Type 2022 + 1 and hit Enter.
  3. Enjoy Haskell telling you the current year! Woooah! 🥳

Get the VS Code extension

JetBrains do not have an IDE for Haskell, but VS Code works very well with the official Haskell extension!

haskell extensions

tip

Cool! You're all set to start your journey with functional programming. Psst... There is a pretty good online guide to Haskell: Learn You A Haskell for Great Good! 📚