Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/drewolson/aoc-hs

Advent of Code in Haskell
https://github.com/drewolson/aoc-hs

Last synced: 2 months ago
JSON representation

Advent of Code in Haskell

Awesome Lists containing this project

README

        

# Advent of Code

[![test](https://github.com/drewolson/aoc-hs/actions/workflows/test.yml/badge.svg)](https://github.com/drewolson/aoc-hs/actions/workflows/test.yml)

## Build

```
stack build
```

## Run Solution

```
stack run -- --help
stack run -- --day 1 --part 1
stack run -- -d 1 -p 1
```

## Test

```
stack test
```

## Format

```
make format-check
make format
```