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

[REBOL] Re: Looking over the horizon - Rebol 3

From: ingo:2b1 at: 10-Nov-2003 20:23

Hi Steven, Steven White wrote:
>>Andrew Martin > >>Anything else you'd want on your wish list for Rebol 3? > > I would like my script to be able to obtain a list of all the words > that I created when I wrote the script.
<...> Do you mean something like this?
>> query/clear system/words
== [end! unset! error! datatype! context! native! action! routine! op! function! object! struct! library! port! any-type! any-word!...
>> a: 2
== 2
>> set 'b "hi"
== "hi"
>> c: func[][print 'done] >> query system/words
== [c a b] Kind regards, Ingo