expander.ss
(module expander mzscheme
  (provide (all-defined))
  (require (lib "include.ss")
           (lib "pretty.ss"))
  (current-load (lambda (path module?) (values)))
  (define assertion-violation #f)

  (include "private/src/compat-mzscheme.scm")
  (include "private/src/expander.scm")
  
  ;; ($ex:expand-file "private/src/standard-libraries.scm"
  ;;                  "private/exp/standard-libraries.exp")
  
  (include "private/exp/standard-libraries.exp")
  
  ) ; end of module expander