6 lines
79 B
Bash
6 lines
79 B
Bash
|
if [ "$EVAL_EXPR" = "true" ]; then
|
||
|
julia -E "$1"
|
||
|
else
|
||
|
julia -e "$1"
|
||
|
fi
|