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

[REBOL] Freeing memory

From: dankelg8::cs::man::ac::uk at: 1-May-2001 15:15

Hi, if I create a block like this:
>> a: make block! 100000
the memory usage of REBOL increases. If I do
>> unset 'a
there should be no references to the block. However, the memory is not released. How can I get the memory back? Gisle