forked from rebol/rebol
-
Notifications
You must be signed in to change notification settings - Fork 2
Demo
angerangel edited this page Mar 15, 2013
·
1 revision
DEMO
Run R3 demo.
DEMO is a function value.
#SOURCE
demo: make function! [ [
"Run R3 demo."
/local err
][
print "Fetching demo..."
if error? err: try [
either exists? %r3-gui.r [do %r3-gui.r] [load-gui]
either exists? %demo.r [do %demo.r none] [do https://raw.github.com/angerangel/r3bazaar/master/builds/windows/demo.r]
] [
either err/id = 'protocol [print "Cannot find demo."] [do err]
]
exit
] ]