in reply to Re^2: 2 newby questions
in thread 2 newby questions

The effects do vary in some cases, since ++ is smarter than it looks.

use strict; use warnings; my $index = 'AH'; $index++; print "++ gives $index\n"; $index += 1; print "+= gives $index\n";

Results in:

++ gives AI Argument "AI" isn't numeric in addition (+) at test.pl line 7. += gives 1