如何在Scheme 中将符号应用为函数?
有没有办法将 '+ 应用于 '( 1 2 3)?
编辑:我想说的是我得到的函数将是一个符号。 有没有办法应用它?
谢谢。
Is there a way I can apply '+ to '( 1 2 3)?
edit: what i am trying to say is that the function i get will be a symbol. Is there a way to apply that?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
应该做。
Should do it.
在 R5RS 中,您需要
Dr.Scheme 中的“相当大”语言允许:
In R5RS you need
The "Pretty Big" language in Dr. Scheme allows for:
“申请”怎么样? 使用变量 + 而不是符号 + 。
R5RS
How about 'apply'? Use the variable + instead of the symbol + .
R5RS
顺便说一句,这个“语法突出显示”是怎么回事?
Btw, what's the deal with this "syntax highlighting" ??
在 Racket 的方案中,它是
In Racket's scheme it would be
“申请”计划怎么样?
我希望这就是您所问的:)
How about the scheme "apply"
I hope that was what you were asking :)