Stuff with the Perl Foundation. A couple of patches in the Perl core. A few CPAN modules. That about sums it up.
I really need to learn to write Perl::Critic policies. There are three serious bugs here which even Perl::Critic's "harsh" setting ignores. At least one of them caused me to waste about 10 minutes of debugging today.
#!/usr/bin/perl
use strict;
use warnings;
my $foo, $bar = foo();
my ( $foo, $bar ) = foo() || '';
sub foo {
my ( $foo, $bar ) = shift;
return ( $foo, $bar );
}
Want some help? (Score:1)
Re: (Score:2)
I've joined the mailing list. Thanks!