为什么 Golfscript 示例在开始时使用弹出并丢弃?
;'2706 410'
~{.@\%.}do;
来自 GCD 的例子。 看起来一开始的 pop 和丢弃不会起任何作用,那么为什么会出现这种情况呢?
;'2706 410'
~{.@\%.}do;
From the GCD example.
It looks like the pop and discard at the start will do nothing, so why is it there?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
程序从堆栈顶部的标准输入内容开始。 pop 会丢弃这个未使用的输入,以便在程序退出时不会打印它。
来自教程:
和:
The program starts with the contents of standard input at the top of the stack. The pop discards this unused input so that it is not printed when the program exits.
From the tutorial:
and: