Lisp简单问题

发布于 2024-08-23 09:14:34 字数 214 浏览 9 评论 0原文

我有一些不理解 gnu clisp 的操作 假设我有一些类似 (let ((x "Hi!"))(print x)) 的代码。 如果我从控制台执行它(例如 clisp fileName.lisp),我会看到

嗨!

但是,当我从解释器执行它时,我看到这个文本两次。为什么?

请帮助我。

I have some not understanding actions from gnu clisp
Suppose, I have some code like (let ((x "Hi!"))(print x)).
If I execute it from console (like, clisp fileName.lisp) I see

Hi!

But, when I execute it from interpreter, I see this text twice. Why?

Help me, please.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

预谋 2024-08-30 09:14:34

解释器始终输出最后一个表达式的值。
print 还会将参数作为值返回,在您的情况下为 "Hi!"
这就是为什么你会看到它两次。

(print "Hi!") 

会给出相同的结果。

The interpreter always outputs the value of the last expression.
print also returns the parameter as a value, "Hi!" in your case.
That's why you see it twice.

(print "Hi!") 

will give the same result.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文