So I downloaded Saphir's Rebol 3 for 32-bit Linux (I have Mint 17). (As draegtun pointed out, no I didn't. They don't seem to offer a Linux version at the moment.)
If test.r
contains:
load-gui
view [text "Hello World!"]
...I get a window as expected and this:
$ ./r3-32-view-linux test.r
Fetching GUI...
But if, instead, test.r
contains:
do %r3-gui.r3
view [text "Hello World!"]
...I get this:
$ ./r3-32-view-linux test.r
** Script error: / does not allow none! for its value2 argument
** Where: do resize-panel actor all foreach do-actor either -apply- apply case view do either either either -apply-
** Near: do bind bind/copy [
size: viewport-box/bottom-right
...
The r3-gui.r3
file, which I downloaded from http://development.saphirion.com/resources/r3-gui.r3 per these instructions, is in the same directory as test.r
, which is the cd
I run from. IIUC, there shouldn't be any difference between the two results...obviously, I don't.