Hi All, I'm studying Perl since one week on "Learning Perl" written by L. Wall and in the paragraph "Assignment Operators" i don't understand why this:
($temp = $global) += $constant;
is equivalent of:
$tmp = $global + $constant;
Instead, before i read it, i thought it was equivalent of:
$temp = $global;
$temp = $temp + $constant;
Regards
--
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
http://learn.perl.org/
