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