[REBOL] Re: Delete Non-Global Words
From: sunandadh:aol at: 21-Feb-2003 17:42
Philippe:
> Sunanda, you told me that later version of View came with 8000+ words.. The
> latest View 1.2.8.3.1 is limited to 4096, as an old one. Which version
> could have more words ?
I'm seeing 8062 in beta REBOL/View 1.2.8.3.1 (3-Aug-2002).
You can test it this way (though your console will need to be shut down and
restarted afterwards -- you can't do much with all words in use):
about
n: 1
attempt [
forever [
to-word join "a" n n: n + 1
]
]
length? first system/words
Sunanda.