use strict; use warnings; my $index = 'AH'; $index++; print "++ gives $index\n"; $index += 1; print "+= gives $index\n"; #### ++ gives AI Argument "AI" isn't numeric in addition (+) at test.pl line 7. += gives 1