Help for this page

Select Code to Download


  1. or download this
    sub next {
        my $self = shift;
    ...
        $self->{urls} = \@urls;
        return $url;
    }
    
  2. or download this
    sub next {
        my $self = shift;
        return pop @{$self->{urls}};
    }