in reply to Re: New Monks Info Page
in thread New Monks Info Page
The other, very important difference is that -w is global, while use warnings is lexical. -w will turn on warnings for all the code used by the script, including in other files. use warnings, on the other hand, will only enable warnings for the block in which it occurs. If you put use warnings in your main script, you won't get warnings from the modules that you use.
It is probably sufficient to recommend -w for new programmers; it works in all versions of Perl, and is the most general way of getting warnings.
|
---|
Replies are listed 'Best First'. | |
---|---|
Re3: New Monks Info Page
by pmas (Hermit) on Jun 11, 2001 at 21:57 UTC |