summaryrefslogtreecommitdiffstats
path: root/run.sh
blob: 588afe398fbb0f48a96133939bcd6c687534d4b3 (plain)
1
2
3
4
5
6
7
8
#!/bin/bash

set -uo pipefail
ghc -o interpreter src/*.hs
./interpreter $@
ret=$?
rm src/*.{hi,o}
exit $ret