compiler-discord/docker/haskell/run.sh

7 lines
158 B
Bash
Raw Normal View History

2019-03-13 06:51:49 +01:00
if [ "$EVAL_EXPR" = "true" ]; then
ghc -e "$1"
else
echo "$1" > program.hs
ghc -O0 -j +RTS -A128m -n2m -RTS program.hs >/dev/null && ./program
fi