rebol --do 不起作用吗?
据此 http://www.rebol.com/docs/changes.html#section- 1.7
--do 应该可以再次工作
,但是当我在 Rebview 1.3.2 / Core 2.6.3 上测试时 rebol.exe helloworld.exe --do "verbose: true"
with helloworld.r:
probe verbose
input
这会触发错误
** 脚本错误:verbose 没有值 ** 近:探测详细 输入
那么它最终会再次起作用吗? :)
According to this
http://www.rebol.com/docs/changes.html#section-1.7
--do should work again
but when I tested on Rebview 1.3.2 / Core 2.6.3
rebol.exe helloworld.exe --do "verbose: true"
with helloworld.r:
probe verbose
input
This triggers an error
** Script Error: verbose has no value
** Near: probe verbose
input
So does it work again or not finally ? :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
解释器对命令行选项的顺序很敏感。 do before script name 对我有用:
其中 helloworld.r 是:
我看到 REBOL 控制台输出为:
The interpreter is sensitive to the order of the command line options. do before script name works for me:
where helloworld.r is:
I see a REBOL console output of: