John Williams:

>     ($x *=2) += 1;

Or  ($x *= 2) ++;

Maybe the comma should be taught a new trick:

  $x *= 2, ++, /= 3;

meaning

  $x = (($x * 2) + 1) / 3;


Or RPN-like:

  $x #= 2* 1+ 3/;

-- 
Grtz, Ruud

Reply via email to