Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: stepping through system object

From: gscottjones:mchsi at: 7-Mar-2003 8:33

From: "Gabriele Santilli" ...
> On the newer versions you have to write: > > >> my-path: "system/options/cgi" > == "system/options/cgi" > >> my-path: load my-path > == system/options/cgi > >> probe do reduce [my-path] > > make object! [ > server-software: none > server-name: none
... Hi, Thorsten and Gabriele, I experimented with Gabriele's information regarding newer REBOLs and discovered that one can also:
>> mypath: "system/options/cgi"
== "system/options/cgi"
>> probe do mypath
make object! [ server-software: none server-name: none ... Directly allowing the creation of new objects as such: a-new-object: do mypath This is no real new info over what Gabriele presented. --Scott Jones