#! /bin/sh
# scheme -- Run the Chez Scheme interpreter

# Change the following path if necessary
: ${SCHEME_LIBRARY_PATH="/opt/scheme/slib/"}
export SCHEME_LIBRARY_PATH

# Change the path below for your install
EXEC='/opt/scheme/scm/scm'

exec "$EXEC" "$@"
