#!/bin/sh
if [ "$1" = "" ]; then
  echo "Usage: ./run <program.scm>"
else
  gosh -I../../lib -I../../src -I../../cg $@
fi
