d25e0be634
This removes the count
10 lines
184 B
Bash
10 lines
184 B
Bash
if [ "$EVAL_EXPR" = "true" ]; then
|
|
ghc -e "$1"
|
|
else
|
|
mkdir "$CODEDIR" && cd "$CODEDIR"
|
|
|
|
echo "$1" > program.hs
|
|
ghc -e main program.hs
|
|
|
|
cd .. && rm -rf "$CODEDIR"
|
|
fi
|