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

[REBOL] Re: word list

From: larry:ecotope at: 23-Apr-2001 15:51

Hi PeO This works:
>> words-with-vals: has [word-list][
word-list: copy [] foreach word first rebol/words [ if not error? try [get in rebol/words :word][append word-list word] ] word-list ]
>> wv: words-with-vals
== [unset! error! datatype! native! action! routine! op! function! object! struct! libr ary! port! any-type! any-word! any-function!...
>> length? wv
== 578 Cheers -Larry