我只需输入简单的代码,例如
(define pi 3.14)
(* 2 pi)
而且我总是收到标题之类的错误消息,这是详细信息:
(define p 2)
(+ 1 p)
;Unbound variable: p
;To continue, call RESTART with an option number:
; (RESTART 6) => Specify a value to use instead of p.
; (RESTART 5) => Define p to a given value.
; (RESTART 4) => Return to read-eval-print level 4.
; (RESTART 3) => Return to read-eval-print level 3.
; (RESTART 2) => Return to read-eval-print level 2.
; (RESTART 1) => Return to read-eval-print level 1.
;Start debugger? (y or n): n
我正在使用 GNU 方案拦截器,当我输入
(define p 2)
(+ 1 p)
我使用 Cx Ce 来运行命令。