我在使用 REBOL3 REPL 时遇到的一个恼人问题是它不接受多行语句。例如,我想输入 "some_obj: make obj! [" ,按回车键,然后继续该语句。
这对我来说很重要,因为我正在使用一个 Vim 插件,它将视觉选择的源代码发送到 REPL。
我读过另一个 StackOverflow 问题,REBOL2 支持多行语句,而 REBOL3 不支持。有没有人为此提供了修复,或者 REPL 中是否有一个支持多行的分支?
Unfortunately Rebol 3 Console doesn't support multi line statements.
I usually write my statements into a text editor, copy them to clipboard and then do in Rebol3 console:
do to string! read clipboard://
Better put that into a function:
do-clip: does [do to string! read clipboard://]