#! /bin/sh
# scheme -- Run the Chez Scheme interpreter

# Change the following path if necessary
: ${SCHEME_LIBRARY_PATH='d:/SCHEME/scm/slib/'}
export SCHEME_LIBRARY_PATH

# Change the path below for your install
EXEC='/home/SCHEME/chez/i3nt/petite.exe'

exec "$EXEC" "$@"
