in reply to Why does $string++ work the way it does?

sorry, let me pre the code
#!/usr/bin/perl

my $string = "a";

for( $i = 0; $i < 64; $i++ ) {
    $string++;
    print "string = '$string'\n";
}

Originally posted as a Categorized Answer.

  • Comment on Re: Why does $string++ work the way it does?