uCBQN/genRuntime
2021-04-02 14:31:47 +03:00

9 lines
192 B
Bash
Executable File

#!/usr/bin/env bash
if [[ $# -ne 1 ]]; then
echo "Usage: ./genRuntime path/to/mlochbaum/BQN"
exit
fi
./cc.bqn $1 r > src/runtime
./cc.bqn $1 c > src/compiler
./cc.bqn $1 f > src/formatter