#!/usr/bin/env zsh # Run commonly-used SubX programs using the SubX VM. if [ $# -eq 0 ] then echo "run " exit 1 fi if [[ $1 == 'ex'* ]] then CFLAGS=-g subx run examples/$* exit $? fi CFLAGS=-g subx run apps/$* exit $?