Help for this page

Select Code to Download


  1. or download this
    use Feed;
    
    while (my $feed = Feed->next) {
        $feed->fetch();
    }
    
  2. or download this
    use Feed;
    
    ...
    while ($feed->set_next) {
        $feed->fetch;
    }