|
|
| Perl Monk, Perl Meditation | |
| PerlMonks |
How do I temporarily block warnings?by faq_monk (Initiate) |
| on Oct 08, 1999 at 00:27 UTC ( #683=perlfaq nodetype: print w/ replies, xml ) | Need Help?? |
|
Current Perl documentation can be found at perldoc.perl.org. Here is our local, out-dated (pre-5.6) version:
The
{
local $^W = 0; # temporarily turn off warnings
$a = $b + $c; # I know these might be undef
}
Note that like all the punctuation variables, you cannot currently use
A new
|
|