in reply to Re: Re: Question regarding variable scope
in thread Question regarding variable scope
is equivalent tosub 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.sub find_parsing { ... }
|
|---|