f0b99910 ^
5e5f569c ^
f1b3d7b9 ^
6ff9ce26 ^
5f21a5e7 ^
ebe2bda3 ^
1
2
3 4 5
6
7 8 9
10 11
12
13 14 15
16
17
#!/usr/bin/env zsh # Run commonly-used SubX programs using the SubX VM. if [ $# -eq 0 ] then echo "run <binary> <args>" exit 1 fi if [[ $1 == 'ex'* ]] then CFLAGS=-g ./subx run examples/$* exit $? fi CFLAGS=-g ./subx run apps/$* exit $?