- or download this
>perl -MO=Deparse,-x9 -e"if(my $x=$a<$b){$a;}"
my $x = $a < $b and do {
$a
};
-e syntax OK
- or download this
do { ( $a < $b ) and do { $a } };
- or download this
( $a < $b ) and do { $a };
- or download this
...
{
...
.
} # $obj cleared here, so destructor only called here.
...