Taken from http://www.rebol.com/docs/view-system.html#section-4:
In some cases you may want to view a window but continue evaluating code after the window is open. You can do that by specifying the new refinement. Here is an example:
print "opening window..."
view/new make face [
offset: 100x100
color: papaya
text: "Example"
]
print "continuing..."
The problem is if I run the code from Rebol's Console, the console is blocked until I close the Windows, whereas I would like to continue what I want in Console.
So how do I unblock the Console ?