- or download this
#!/usr/bin/perl
use strict;
...
}
print '3: ', $foo eq $bar, "\n"; # Warns again.
- or download this
((defined($x) && defined($y) && ($x eq $y))
|| (!defined($x) && !defined($y))
- or download this
( defined($x && $y) and ($x eq $y) ) or not defined($x || $y)
- or download this
defined($x&&$y)&&$x eq$y||!defined($x||$y)