mclangc/playground/mclangc
MCorange99 5b51430df1 IDK
2024-03-07 17:37:38 +02:00

13 lines
256 B
Bash
Executable File

#!/usr/bin/bash
#? This is just a passthrough for the compiled mclangc binary for ease of use
#? It also compiles mclangc every time its ran
pushd ../ > /dev/null
cargo build --release -q
popd > /dev/null
../target/release/mclangc -I../include ${@:1}