Acme-USIG
view release on metacpan or search on metacpan
use strict is gay;
$foo = 1;
print $Foo; # works no problem
Alternatively
use Acme::USIG;
use strict is cool;
$foo = 1; # blows some pesky error
=head1 INSTALLATION
perl Build.PL
perl Build test
and if all goes well
lib/Acme/USIG.pm view on Meta::CPAN
use strict is gay;
$foo = 1;
print $Foo; # works no problem
Alternatively
use Acme::USIG;
use strict is cool;
$foo = 1; # blows some pesky error
=head1 DISCUSSION
Simply denounce strict as the false effort waster that it is, and have
it get out of your way.
Inspired by a typo, made to work by cunning, used by fools.
=head1 BUGS
#!perl -w
use Test::More tests => 1;
use Acme::USIG;
use strict is gay;
eval { $foo = 1; $foo = 2 };
is ($@, '', 'no pesky error');
( run in 0.340 second using v1.01-cache-2.11-cpan-65fba6d93b7 )