1 2 3 4 5 6 7 8
#!/bin/bash flo-llvm $1.flo echo FLO-LLVM DONE flo-llvm-release $1.flo --harness > $1-harness.cpp echo FLO-LLVM-RELEASE DONE g++ -o $1 $1-harness.cpp $1.o echo GPP DONE