Graham Barr writes:
: But are we not at risk of introducing another form of
:
: my $x if 0;
:
: with
:
: if my $one = <ONE> {
: ...
: }
: elsif my $two = <TWO> {
: }
:
: if ($two) {
: ...
: }Then it's just undefined. It's no different from how &&, ||, or ??:: work when you put a declaration in something that's conditionalized. Larry
