compiler-discord/docker/haskell/run.sh
2019-06-15 21:22:43 -04:00

6 lines
134 B
Bash

if [ "$EVAL_EXPR" = "true" ]; then
ghc -e "$1" || true
else
printf %s "$1" > program.hs
ghc -e main program.hs || true
fi