;;; $Id: localize-example.scm,v 1.5 2005/02/17 17:37:44 leavens Exp $ ;;; Local customizations for running EOPL 2e. (module localize mzscheme (provide *cs342:libdir* *cs342:hwdir* *cs342:scheme-implementation-vicinity*) ;;; Be sure to change the following two paths. ;;; Use forward slashes in both and leave a / at the end of both. ;;; The directory where you put the course library (from lib342.zip) (define *cs342:libdir* "c:/cygwin/usr/local/PLT/collects/lib342/") ;;; The directory where you put the course homework (from hw342.zip) (define *cs342:hwdir* "d:/classes/cs342/homework/current/") ;;; Also define the following, use forward slashes, ;;; but don't put a / at the end of this. ;;; The directory where you installed SLIB (define *cs342:scheme-implementation-vicinity* "c:/cygwin/usr/local/PLT/collects/slib") )