d25e0be634
This removes the count
6 lines
146 B
Bash
6 lines
146 B
Bash
mkdir "$CODEDIR" && cd "$CODEDIR"
|
|
|
|
echo "$1" > program.ml
|
|
ocamlopt -cclib --static -o program program.ml && ./program
|
|
|
|
cd .. && rm -rf "$CODEDIR"
|