Unfortunately, the Rebol 3 console does not support multi-line operators.
Usually I write my statements in a text editor, copy them to the clipboard, and then do them in the Rebol3 console:
do to string! read clipboard://
Better put this in a function:
do-clip: does [do to string! read clipboard://]
source share