|
|
| laziness, impatience, and hubris | |
| PerlMonks |
Re^3: dynamic 2d arrayby amarquis (Curate) |
| on Aug 14, 2008 at 13:45 UTC ( #704349=note: print w/ replies, xml ) | Need Help?? |
|
Depends on how you define it. The text is talking about global variables, which are available to code outside their containing block:
Prints 3. Compare with:
Without strict, this prints only a newline. This code declares a lexically scoped $i, which only persists through the end of its enclosing block. One of the best things about strict/warnings is that perl will complain about this kind of thing, possibly saving you a bunch of time hunting down a confusing error in a large program.
In Section
Seekers of Perl Wisdom
|
|
||||||||||||||||||||