adventofcode-2021/prepare

15 lines
329 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
luac -o luac.out "day${day}/part${part}.lua"
2021-11-30 22:49:02 +01:00
printf '#!/bin/sh\nlua luac.out "$@"\n' > run
chmod u+x run
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