Rebol 匿名函数行为很奇怪
下面我的匿名 func 测试仅执行一次:
repeat i 5 [
func[test][
print test
] rejoin ["test" i]
]
我必须将其命名为能够按预期执行 5 次:
repeat i 5 [
test: func[test][
print test
] test rejoin ["test" i]
]
这很奇怪。难道真的不能在循环中使用匿名函数吗?
My anonymous func test below is executed only once:
repeat i 5 [
func[test][
print test
] rejoin ["test" i]
]
I am obliged to name it to be able to execute it 5 times as expected:
repeat i 5 [
test: func[test][
print test
] test rejoin ["test" i]
]
This is weird. isn't it really possible to use anonymous function in loops ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的第一个代码示例只是定义匿名函数五次。它不调用它。添加一个 do ,一切都应该很好:
Your first code example simply defines the anonymous function five times. It does not invoke it. Add a do and all should be well: