Perl programming on MPE/iX - April 2002

Solution Symposium Page 14April 4, 2002
assignment operators
works like C
$a += 2; is equivalent to $a = $a + 2;
**= += *= &= <<= &&= -= /=
|= >>= ||= .= %= ^= x=