RE: Flush Everything

2003-06-06 Thread Bob Showalter
Voodoo Raja wrote: > Hi there > > I have got a script running.. > > Its ment to repeat a particular sub routine using the "after" syntax > > All i want to do is clear everything in buffer ... since it eats up > the memory > > > I do not need any varaibles which I have defined in the sub. If

Re: Flush Everything

2003-06-06 Thread Lance
You could 'delete' or 'undef' variables you don't want. But I sense that you want a bigger wiper than that... If you define variables using 'my' in the sub, Perl's gargbage collection should annihilate them when it has time/needs resources. It might even eliminate them as soon as you exit the sub

Re: Flush Everything

2003-06-05 Thread Tassilo von Parseval
On Fri, Jun 06, 2003 at 04:12:11PM +1200 Voodoo Raja wrote: > I have got a script running.. > > Its ment to repeat a particular sub routine using the "after" syntax What is the "after" syntax? Do you mean statement-modifiers as in function() for 1 .. 10; ? > All i want to do is clear ev