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!\"]"
これを機能させるには、実験的なコンソール バージョンを取得する必要があります。
http://www.rebolsource.net/
R2 では、次のように -c オプションを追加する必要があります。
rebol.exe -cw --do "print [\"Hello world!\"]"
-c は cgi モードを表します