adventofcode/README.md

24 lines
378 B
Markdown
Raw Normal View History

2017-12-06 22:22:59 +00:00
# Adventofcode 2017
My solution to [advent of code 2017](http://adventofcode.com) in Haskell.
I try to use protolude and to write down the tests I made GHCi.
Mainly to play with it:
~~~
> stack build; and stack exec adventofcode-exe
~~~
To launch the tests:
~~~
> stack test
~~~
2017-12-14 20:57:28 +00:00
To launch only the tests of one day:
~~~
> stack test --test-arguments="-p \"Day 14\""
~~~