/aoc2021

Primary LanguageHaskell

Advent of Code 2021

Solutions to https://adventofcode.com.

Development

  1. Get ghcup
  2. Install ghc
ghcup install ghc 9.2.1
  1. Install cabal-install
ghcup install cabal
  1. (Optional) Install ghcid
cabal install ghcid
  1. (Optional) Install doctest
cabal install doctest

Fire up GHCi

cabal repl

Or fire up the GHCi daemon

ghcid

This will reload the interpreter and run doctests on every file save. Requires both ghcid and doctest to be on your PATH.