Help for this page

Select Code to Download


  1. or download this
    if (my $newslines = $newscomp->getNewsLines) {
         print " Headlines:\n";
    ...
             print $newslines->getHeadLine($i),"\n";
         }
    }
    
  2. or download this
         my @headlines = $newslines->getHeadLineList();
         foreach my $h (@headlines) {
             print $h->getHeadLine(),"\n";
         }