in reply to Re: On Commenting Out 'use strict;'
in thread On Commenting Out 'use strict;'
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"; ... }
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^3: On Commenting Out 'use strict;'
by thor (Priest) on Aug 11, 2005 at 11:43 UTC | |
by itub (Priest) on Aug 11, 2005 at 15:19 UTC |