Help for this page

Select Code to Download


  1. or download this
        my $start = q{AA};
        my $next  = q{AB};
    ...
            $next                      = _alpha_add($next);
            $count++;
        }
    
  2. or download this
    sub _alpha_add {
        my $string = shift;
    ...
        }
        return $string;
    }