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

[REBOL] Re: Generating words and global variable space

From: dankelg8:cs:man:ac at: 22-Mar-2001 13:56

Hi Doug, I don't think this is the solution. Let me illustrate the problem: forever [to-word join 'x counter: counter + 1]
>> counter: 0
== 0
>> forever [to-word join 'x counter: counter + 1]
** Internal Error: No more global variable space ** Where: to-word ** Near: to word! :value
>> use [new-word] []
** Internal Error: No more global variable space ** Near: to word! :value I need to generate lots of new words without filling up the global variable space. It seems this is not possible. Gisle On Thu, 22 Mar 2001, Vos, Doug wrote: