#! /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 both of the paths below for your install
EXEC='/opt/scheme/chez/bin/i3le/petite'

exec "$EXEC" "$@"
