Learning Haskell with advent of code 2019 -> https://adventofcode.com/2019/
Before running solutions you need to :
- Install haskell (ghci)
- Install stack
You can run any day code by :
- cd to day
- building with
stack build - running code with input
stack exec adventOfCode2019-day<X>-exe - running tests with
stack test