Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/jrp2014/aoc2023

Advent of Code 2023 in Haskell
https://github.com/jrp2014/aoc2023

Last synced: 1 day ago
JSON representation

Advent of Code 2023 in Haskell

Awesome Lists containing this project

README

        

# AoC2023
Advent of Code 2023 in Haskell

Most, if not all of these solutions should be able to run from `ghci` without compiling. Eg,

```
jrp@ AoC2023 % cd Day01
jrp@ Day01 % ghci -Wall Day01.hs
GHCi, version 9.4.7: https://www.haskell.org/ghc/ :? for help
Loaded GHCi configuration from /Users/jrp/.ghci
[1 of 1] Compiling Day01 ( Day01.hs, interpreted )
Ok, one module loaded.
(0.02 secs,)
ghci> main
Part1:
54450
Part2:
54265
(0.02 secs, 11,050,072 bytes)
ghci> :q
Leaving GHCi.
jrp@ Day01 %
```