#! /bin/sh
# scheme -- Run the SCM interpreter

# Change the following path if necessary
: ${SCHEME_LIBRARY_PATH="d:/SCHEME/scm/slib/"}
export SCHEME_LIBRARY_PATH

# Change the following path if necessary
EXEC='/home/SCHEME/scm/scm'

exec "$EXEC" "$@"
