变量 *、+ 和 / 是否绑定到 SLIME 或 Clozure CL 中最近的输入?
当我在 SLIME(连接了 Clozure REPL)中闲逛时,我发现了这一点:
看起来变量 +、* 和 / 都绑定到最近输入的某些变化,+ 是输入本身,* 是评估的结果该输入,/ 是列表中包含的结果。
这是对的吗?谁应对此负责,SLIME 还是 Clozure?我在 SLIME 手册中找不到任何内容。
谢谢!
; SLIME 2010-05-13
CL-USER> +
NIL
CL-USER> *
NIL
CL-USER> /
(NIL)
CL-USER> -
-
CL-USER> +
-
CL-USER> (list 1 2)
(1 2)
CL-USER> +
(LIST 1 2)
CL-USER> /
((LIST 1 2))
CL-USER> (+ 1 2)
3
CL-USER> /
(3)
CL-USER> *
(3)
CL-USER> (* 1 2)
2
CL-USER> *
2
CL-USER>
I was messing around in SLIME (connected a Clozure REPL) when I discovered this:
It looks like the variables +, *, and / are all bound to some variation on recent input, + is the input itself, * is the result of evaluating that input, and / is the result contained in a list.
Is this right? Who is responsible for this, SLIME or Clozure? I couldn't find anything in the SLIME manual.
Thanks!
; SLIME 2010-05-13
CL-USER> +
NIL
CL-USER> *
NIL
CL-USER> /
(NIL)
CL-USER> -
-
CL-USER> +
-
CL-USER> (list 1 2)
(1 2)
CL-USER> +
(LIST 1 2)
CL-USER> /
((LIST 1 2))
CL-USER> (+ 1 2)
3
CL-USER> /
(3)
CL-USER> *
(3)
CL-USER> (* 1 2)
2
CL-USER> *
2
CL-USER>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这些都是 Common Lisp 标准指定的。在环境字典中搜索“变量”。
Those are all, and more, specified by the Common Lisp standard. Search the environment dictionary for 'Variable'.
<代码>+
<代码>++
<代码>+++
<代码>-
<代码>*
<代码>**
<代码>***
<代码>/
<代码>//
<代码>///
来自 Common Lisp 语言,第二版 20.2
+
++
+++
-
*
**
***
/
//
///
From Common Lisp the Language, 2nd Edition 20.2