rebol --do 不起作用吗?

发布于 2024-08-03 05:26:32 字数 423 浏览 4 评论 0原文

据此 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 技术交流群。

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

发布评论

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

评论(1

冷默言语 2024-08-10 05:26:32

解释器对命令行选项的顺序很敏感。 do before script name 对我有用:

   rebview  --do "verbose: true" helloworld.r

其中 helloworld.r 是:

  rebol []
  probe verbose
  input
  halt

我看到 REBOL 控制台输出为:

 true

The interpreter is sensitive to the order of the command line options. do before script name works for me:

   rebview  --do "verbose: true" helloworld.r

where helloworld.r is:

  rebol []
  probe verbose
  input
  halt

I see a REBOL console output of:

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