plt-script.ss 801 B

1234567891011121314151617181920212223242526
  1. ; Part of Scheme 48 1.9. See file COPYING for notices and license.
  2. ; Authors: Mike Sperber
  3. ; Say <srcdir> is the Scheme 48 source directory.
  4. ; cd <srcdir>, then start DrScheme like so:
  5. ; env PLTCOLLECTS=:<srcdir>/scheme drscheme
  6. ; in the source directory, select the "MzScheme" language,
  7. ; copy this into an empty buffer, and press run.
  8. ; If you want to run within MzScheme, you have to
  9. ; (require (lib "errortrace.ss" "errortrace"))
  10. ; (Mike doesn't know why.)
  11. (require "build/plt-link.ss")
  12. (eval
  13. '(begin
  14. (load-configuration "scheme/interfaces.scm")
  15. (load-configuration "scheme/vm/shared-interfaces.scm")
  16. (load-configuration "scheme/packages.scm")
  17. (flatload initial-structures)
  18. (load "build/initial.scm")
  19. (link-initial-system))
  20. (module->namespace "build/plt-link.ss"))