Help for this page

Select Code to Download


  1. or download this
    for (; $first <= $last; $first++) {
     print $c->article($first);
    }
    
  2. or download this
    ($first, $last) = ($newserver->group($newsgroup));
    my @messages = ($first..$last);
    foreach (@messages) {
      print $c->article($_);
    }
    
  3. or download this
    ($first, $last) = ($newserver->group($newsgroup));
    my @messages = ($first..$last);
    ...
    foreach (@messages) {
      print $c->article($_);
    }