#!/bin/sh
# Wrapper for Gambit-C to load support code for SICP

# Set the following path to point to the directory where this shell
# script is located.
SCHEME_COURSE_PATH=/u/courses/scheme/course-support
export SCHEME_COURSE_PATH

exec ${SCHEME_COURSE_PATH}/gsi \
    -e "(include \"${SCHEME_COURSE_PATH}/course-support-gambitc.scm\")" "$@" -
