in reply to Found a Perl hole

Eh?
I'm going to make an assumption (dangerous, I know), and assume you're talking about this behaviour:
#!/usr/bin/perl use warnings; use strict; use diagnostics; my $foo = 1; if($foo = 2) { print "Boo!\n"; }
... which produces the output:
Found = in conditional, should be == at hole.pl line 8. (#1) (W syntax) You said if ($foo = 123) when you meant if ($foo == 123) (or something like that). Boo!
... which kind of explains it really.

davis
It wasn't easy to juggle a pregnant wife and a troubled child, but somehow I managed to fit in eight hours of TV a day.