in reply to Re: Perl 6 - Operator renaming
in thread Perl 6 - Operator renaming
For the same reason Perl 5 has '+'and '.': because of the extremely convenient auto-conversion of strings to numbers:
# in Perl 5 $i=10; # could be $i="10"; $j=1; # could be $j="1"; print $i + $j; # 11 print $i . $j; # 101
|
|---|