https://github.com/bthuilot/aoc21
๐โ๏ธAdvent of Code 2021 โ๏ธ๐
https://github.com/bthuilot/aoc21
advent-of-code advent-of-code-2021 haskell
Last synced: about 1 month ago
JSON representation
๐โ๏ธAdvent of Code 2021 โ๏ธ๐
- Host: GitHub
- URL: https://github.com/bthuilot/aoc21
- Owner: bthuilot
- License: gpl-3.0
- Created: 2021-11-30T21:54:51.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-11-12T14:32:16.000Z (over 3 years ago)
- Last Synced: 2025-12-26T02:39:21.368Z (6 months ago)
- Topics: advent-of-code, advent-of-code-2021, haskell
- Language: Haskell
- Homepage:
- Size: 101 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Advent Of Code 2021 [](https://github.com/bthuilot/adventofcode2021/actions/workflows/haskell.yml)
### *In Haskell*
## Running
To run first build the project, then use `stack exec` to run it
```shell
$ stack build
$ stack exec aoc2020
```
or you can use the `stack runghc` command directly on the `app/Main.hs` file
```shell
$ stack runghc app/Main.hs
```
## Tests
Tests for this repository are just the examples given in each prompt for the days.
The suite can be run by executing
```shell
$ stack test
```