in reply to Re: Re: if and
in thread if and
Since, they deparse to the same thing, how can one be a "failure"? Are you claiming that they do different things, or that one is harder to understand and maintain?
% perl -MO=Deparse -e'if($x1 eq $y1 && $x2 eq $y2){}' if ($x1 eq $y1 and $x2 eq $y2) { (); } % perl -MO=Deparse -e'if(($x1 eq $y1) and ($x2 eq $y2)){}' if ($x1 eq $y1 and $x2 eq $y2) { (); }
-Blake
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re3: if and
by vek (Prior) on Feb 20, 2002 at 16:23 UTC |