Skip to content

Files

Latest commit

29d33ee · Feb 15, 2019

History

History
30 lines (16 loc) · 988 Bytes

README.md

File metadata and controls

30 lines (16 loc) · 988 Bytes

Lunch-N-Learn: Haskell

Installing Haskell

brew install haskell-stack

This will include Stack, the build tool we will be using to ensure we don't end up in dependency hell thanks to Cabal

Installing Haskero for VS Code

Haskell development (especially at the start) can be tedious if you need to run ghc everytime to see if you types compose. Running Haskero with VS Code allows us to do type checking within our editor

Running the week's code

Each week's project code will be its own self-contained Stack project

cd <project-file>

stack build --> Builds the executables

stack ghci --> To access the GHC REPL