in reply to Re: Re: Question regarding variable scope
in thread Question regarding variable scope

Umm, I have to disagree with you here. The code
sub find_parsing() { ... }
is equivalent to
sub find_parsing { ... }
I always start my subroutines with sub function() (a habit from shell programming days). Strict argument prototyping is not necessary with Perl though.