Skip to content

Latest commit

 

History

History
63 lines (44 loc) · 3.16 KB

README.md

File metadata and controls

63 lines (44 loc) · 3.16 KB

HaskellDump

Dumping ground for Haskell

Haskell Installation for Windows using Chocolatey

From Admin-Powershell run:

Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))

Then from Admin command-prompt

choco install haskell-dev

For REPL:

ghci.exe

To compile:

ghc main.hs

Learning

Mostly taken from Derek Banas' video and Learn You a Haskell for Great Good!

Programming in Haskell by Graham Hutton

Typing up and exercises from Graham Hutton's book.

Programming in Haskell book cover