forked from rebol/rebol
-
Notifications
You must be signed in to change notification settings - Fork 2
Load gui
angerangel edited this page Mar 19, 2013
·
1 revision
LOAD-GUI
Download current Spahirion's R3-GUI module from web.
LOAD-GUI is a function value.
#SOURCE
load-gui: make function! [ [
{Download current Spahirion's R3-GUI module from web.}
/local data
][
print "Fetching GUI..."
either error? data: try [load http://www.saphirion.com/development/downloads-2/files/r3-gui.r3] [
either data/id = 'protocol [print "Cannot load GUI from web."] [do err]
] [
do data
]
exit
] ]