Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何让 Rebol 输出“Hello world!” 字符串到标准输出?我试过了,rebol.exe -w --do "print [\"Hello world!\"]"但我没有看到任何输出。
rebol.exe -w --do "print [\"Hello world!\"]"
在 R3 中,您需要获得实验控制台版本才能使其工作:
http://www.rebolsource.net/
在 R2 中,您需要像这样添加 -c 选项:
rebol.exe -cw --do "打印 [\"Hello world!\"]"
-c 代表cgi模式