将上下文切换到某个模块后,我定义了一个新变量(C1),但是REPL仍然无法使用该变量的定义:
;; The problem of switching context in the geiser-mode
(module switch_repl racket
;; Entering the context of this module with ,enter "switch_repl.rkt"
(define C0 0)
C0
;; after we define C1 and evaluate it in this buffer
;; (define C1 1)
;; C1
;; Immediately after definition C1 should be available from REPL. But....
)