|
|
| There's more than one way to do things | |
| PerlMonks |
Re: Scope surpriseby Nkuvu (Priest) |
| on Apr 11, 2009 at 00:17 UTC ( #756951=note: print w/ replies, xml ) | Need Help?? |
|
If you had use warnings in the script you'd see something like "my" variable $foo masks earlier declaration in same scope at scriptname.pl line 6. I'm pretty sure that Perl is parsing the script prior to actually executing it, seeing the second declaration of $foo which masks the first declaration, and using that second variable in the same scope to actually execute the script. So you're calling the subroutine before defining the second $foo, meaning you print an uninitialized value. You would see the same output if you had a script like
In Section
Seekers of Perl Wisdom
|
|
||||||||||||||||||||