>t = {{{{{{{{{{{{'test'}}}}}}}}}}}} > >t = nil > >how many gc cycles will be needed to collect 'test' ? >only 1 ? Yes, only 1. GC has noting to do with the "depth" of objects, only whether they are referenced or not. --lhf