in reply to Re: Strange memory growth?
in thread Strange memory growth?

Um, that is not true, and if it was then it is more likely that the memory growth would not happen because $foo would be overwritten each time.
use strict; if (1) { my $foo = "hi"; } print $foo."\n"; __OUTPUT__ Global symbol "$foo" requires explicit package name at scope.pl line 5 +. Execution of scope.pl aborted due to compilation errors.

Replies are listed 'Best First'.
Re: Re: Re: Strange memory growth?
by Taulmarill (Deacon) on Nov 07, 2003 at 21:17 UTC
    me stupid, you are absolutely right fletcher.