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

[REBOL] Re: 'join automatic type conversion

From: SunandaDH:aol at: 9-Dec-2005 13:49

jf:
> Does that mean that when you UNSET a word, it is still there in the > dictionnary "waiting" and occupying space in memory?
Yes, indeed. And when you hit 8,000 or so (the number varies by version) you can create no more and your session is dead in the water. It's not *as* bad as it sounds: the limit is 8000 *unique* names.....This code uses only three unique names: a b c a : 1 b: 2 c: func [a /local b c][ b: make object! [b: a c: 6] return b/b ] Sunanda.