adventofcode-2021/prepare

13 lines
243 B
Plaintext
Raw Normal View History

2021-11-29 11:34:50 +01:00
#!/bin/sh
day="$1"
part="$2"
day="$(printf '%02d' "$day")"
2021-12-03 09:41:12 +01:00
if test -f "day${day}/part${part}.lua"; then
luajit -v >/dev/null
2021-12-03 09:41:12 +01:00
elif test -f "day${day}/part${part}.hs"; then
2021-11-29 11:34:50 +01:00
#stack build
2021-12-03 09:41:12 +01:00
stack ghc -- -O3 "day${day}/part${part}.hs" -o run
2021-11-29 11:34:50 +01:00
fi