为什么“让”是“让”?不评估,只是给我#

发布于 2024-08-19 00:13:01 字数 273 浏览 3 评论 0原文

事情就这么简单:

Welcome to DrScheme, version 4.2.3 [3m].
Language: Lazy Scheme; memory limit: 128 megabytes.

> (let ((x 2) (y 10))
   (+ x y))

#<promise>

> 

我按 Enter 键输入 let 表达式,它会给出 #。我做错了什么?

Something simple as this:

Welcome to DrScheme, version 4.2.3 [3m].
Language: Lazy Scheme; memory limit: 128 megabytes.

> (let ((x 2) (y 10))
   (+ x y))

#<promise>

> 

I press enter for the let expression, and it gives me the #<promise>. What am I doing wrong?

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

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

发布评论

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

评论(1

回忆那么伤 2024-08-26 00:13:01

它说语言:惰性方案;。我确信这意味着您正在使用延迟运行的方案变体 - 它在需要结果之前不会评估表达式。方案在内部管理此问题的方式是使用方案的承诺机制 - 不是返回表达式的结果,而是返回稍后计算结果的承诺。您应该能够通过针对此承诺调用 force 来显式获取结果。

这里有几个参考:

非惰性方案将按照您期望的方式运行。

华泰

It says Language: Lazy Scheme;. I'm sure this means that you're using a variant of scheme that runs lazily - i.e. it doesn't evaluate an expression until the result is required. The way scheme will manage this internally will be by using scheme's promise mechanism - instead of returning the result of an expression, a promise to calculate the result later is returned. You should be able to get the result explicitly by calling force against this promise.

Here are a couple of references:

A non-lazy scheme will behave in the way you expect.

HTH

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