22 lines
634 B
Racket
22 lines
634 B
Racket
#lang s-exp "kernel.rkt"
|
|
|
|
(provide (except-out (all-from-out "kernel.rkt")
|
|
|
|
;; Don't publically export the bindings from #%paramz.
|
|
exception-handler-key
|
|
parameterization-key
|
|
break-enabled-key
|
|
|
|
;; Use the traced app
|
|
#;#%app)
|
|
|
|
(all-from-out "private/list.rkt")
|
|
|
|
#;(rename-out [traced-app #%app]))
|
|
|
|
(require "private/list.rkt"
|
|
"private/traced-app.rkt")
|
|
|
|
|
|
;; Kludge: This forces modbeg to be compiled and packaged.
|
|
(require racket/private/modbeg) |