在尝试 gambit 的 gsi (4.6.6) 时,当我在 let 中输入无效的内容时,我遇到了一个奇怪的情况。
以正常方式进行操作,一切都按预期进行。i and
j 不可见。
> (let ((i 4) (j 3)) (display (+ i j)) (newline))
7
> i
*** ERROR IN (console)@2.1 -- Unbound variable: i
1> j
*** ERROR IN (console)@3.1 -- Unbound variable: j
但是,如果我在 let 块中遇到问题,i and
j 是可见的。就好像我仍然在 let 表单的范围内。这是怎么回事?此外,查看提示符上的数字,例如>
1> `2> 等。看起来那里也有信息。如果是这样,那是什么?也许与嵌套或错误模式有关?
2> (let ((i 2) (j 3)) (display + i j) (newline))
*** ERROR IN (console)@4.20 -- Wrong number of arguments passed to procedure
(display '#<procedure #2 +> 2 3)
3> i
2
3> j
3
这与 clojure 中的有点不同。例如
user=> (defn display [n] (print n))
#'user/one-arg-function
user=> (let [i 2 j 3] (display + i j) (println))
ArityException Wrong number of args (3) passed to: user$one-arg-function clojure.lang.AFn.throwArity (AFn.java:437)
user=> i
CompilerException java.lang.RuntimeException: Unable to resolve symbol: i in this context, compiling:(NO_SOURCE_PATH:0)
user=> j
CompilerException java.lang.RuntimeException: Unable to resolve symbol: j in this context, compiling:(NO_SOURCE_PATH:0)