in reply to Why does $string++ work the way it does?
#!/usr/bin/perl my $string = "a"; for( $i = 0; $i < 64; $i++ ) { $string++; print "string = '$string'\n"; }
Originally posted as a Categorized Answer.