Help for this page

Select Code to Download


  1. or download this
    my @work = fetch_jobs($starting_condition);
    while ( @work ) {
        # ...
    }
    
  2. or download this
    my @work = fetch_jobs($starting_condition);
    while ( @work ) {
    ...
    
        # process job
    }
    
  3. or download this
    my @work = fetch_jobs($starting_condition);
    my %seen;
    ...
    
        # process job
    }
    
  4. or download this
    my @work = fetch_jobs($starting_condition);
    my %seen;
    while ( @work && @work < 1000 ) {
        # ...
    }