- or download this
$x = $x * $y ;
## With the Syntax Suger:
$x *= $y ;
- or download this
$var = $var . 'xyz' ;
$var .= 'xyz' ;
- or download this
$latest = $latest > time() ? $latest : time();
## With your Syntax Suger:
$latest ?>:= time() ;
- or download this
## Probably what should be made internally:
my $tmp = time() ;
$latest = $tmp if $latest > $tmp ;