On this page:
make-evaluator

 (require mzlib/sandbox)

The mzlib/sandbox library mostly re-exports scheme/sandbox, but it provides a slightly different make-evaluator function.

The library re-exports the following bindings:

  sandbox-init-hook
  sandbox-reader
  sandbox-input
  sandbox-output
  sandbox-error-output
  sandbox-propagate-breaks
  sandbox-coverage-enabled
  sandbox-namespace-specs
  sandbox-override-collection-paths
  sandbox-security-guard
  sandbox-path-permissions
  sandbox-network-guard
  sandbox-make-inspector
  sandbox-eval-limits
  kill-evaluator
  break-evaluator
  set-eval-limits
  put-input
  get-output
  get-error-output
  get-uncovered-expressions
  call-with-limits
  with-limits
  exn:fail:resource?
  exn:fail:resource-resource

(make-evaluator language    
  requires    
  input-program ...)  (any/c . -> . any)
  language : 
(or/c module-path?
      (one-of/c 'r5rs 'beginner 'beginner-abbr
                'intermediate 'intermediate-lambda 'advanced)
      (list/c (one-of/c 'special) symbol?)
      (list/c (one-of/c 'special) symbol?)
      (cons/c (one-of/c 'begin) list?))
  requires : 
(or/c (cons/c 'begin list?)
      (listof (or/c module-path? path?)))
  input-program : any/c
(make-evaluator module-decl)  (any/c . -> . any)
  module-decl : (or/c syntax? pair?)
Like make-evaluator or make-module-evaluator, but with several differences: