racket/collects/xrepl/main.rkt
Eli Barzilay 7585edbcb6 xrepl improvments:
* 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.
2011-07-29 07:29:29 -04:00

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)