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

[REBOL] Re: intersting side-effect to dynamic word usage...

From: ammonjohnson::yahoo at: 17-Nov-2001 13:40

Yes, roughly 4K entries. Contexts will not save you from the words being in the "GC" (we need to be careful how we call that the "GC" REBOL refers to Garbage Collection as GC) There have been ways mentioned in this thread of how to avoid words being in the GN (Global Namespace), but they rely on you knowing just how each word is called, & only calling it from your specially designed functions. (ie. if someone typed the path to your word(s) in the console, your attempt to keep them from the GN has failed.) HTH Ammon