http://qs1969.pair.com?node_id=482890


in reply to Re: On Commenting Out 'use strict;'
in thread On Commenting Out 'use strict;'

I heard a rumor that Perl6 is going to give us the ability to shut off individual warnings, without losing the ability to see other warnings.

You can actually do that on Perl 5:

use warnings; ... # and then deep on your code { ... no warnings 'uninitialized'; # or whatever print "$uninitialized_var\n"; ... }