http://qs321.pair.com?node_id=87588


in reply to Re: New Monks Info Page
in thread New Monks Info Page

-w is not actually equivalent to use warnings. The most obvious difference is that the warnings pragma is only available in perl5.6.0 and later.

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.