
* a single function to set up all environment parameters. * improve `getarg's treatment of default thunk * Add an error display handler that doesn't show the context and instead add a ,bt command to show it.
13 lines
279 B
Racket
13 lines
279 B
Racket
#lang racket/base
|
|
|
|
;; xrepl is intended to be loaded from your init file, see the
|
|
;; documentation for details.
|
|
|
|
(require "xrepl.rkt")
|
|
|
|
;; may want to disable inlining to allow redefinitions
|
|
;; (compile-enforce-module-constants #f)
|
|
|
|
;; start everything
|
|
(setup-xrepl-environment)
|