Help for this page

Select Code to Download


  1. or download this
    my $str = 'aaaa';
    print $str++, $/ while $str le 'dddd';
    
  2. or download this
    my $str = 'aaaa';
    while ($str le 'dddd') {
        print $str++, $/;
        1 while $str =~ s/(.)e/chr(1 + ord $1) . 'a'/e;
    }