Help for this page

Select Code to Download


  1. or download this
    my $foo = 'a';
    for my $string ('b'..'z') {
        $foo =~ s/./$string/o;
        print "$foo\n";
    }