http://www.perlmonks.org?node_id=172968


in reply to Re^3: Can't localize lexical variable $var at...
in thread Can't localize lexical variable $var at...

You did not understood what I meant.
{ my $var=2; sub inc {return $var++} sub dec {return $var--} } print inc; print dec;
Those subs see that $var which is not seen outside that block, and perl doc says this is a trick to have private static variables.

Courage, the Cowardly Dog.