在geiser模式下,上下文切换期间发生问题

时间:2019-04-03 10:42:44

标签: emacs racket geiser

将上下文切换到某个模块后,我定义了一个新变量(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....
  )

观看此视频:https://www.youtube.com/watch?v=6M1tJz6gi7A

0 个答案:

没有答案