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

[REBOL] Re: CORE experimental 2.4.39

From: larry:ecotope at: 22-Nov-2000 19:45

Hi Jeff Just testing the new version. Excellent!!! I have one quick question about the "indefinite extent" or "GC bug" being fixed. This test now works.
>> b: []
== []
>> use [x][x: 1 append b 'x]
== [x]
>> use [x][x: 2 append b 'x]
== [x x]
>> reduce b
== [1 2]
>> recycle >> reduce b
== [1 2] Great!! But you wrote: Indefinite extent fixed, more or less. What are the qualifications? When does the "less" come into play? Cheers -Larry