initial commit

This commit is contained in:
Felix Van der Jeugt 2021-11-29 11:34:50 +01:00
commit f4fa590833
No known key found for this signature in database
GPG key ID: 58B209295023754D
4 changed files with 31 additions and 0 deletions

10
prepare Executable file
View file

@ -0,0 +1,10 @@
#!/bin/sh
day="$1"
part="$2"
day="$(printf '%02d' "$day")"
if test -f "Day${day}/Part${part}.hs"; then
#stack build
stack ghc -- -O3 "Day${day}/Part${part}.hs" -o run
fi