Help for this page

Select Code to Download


  1. or download this
    my @work = fetch_jobs($starting_condition);
    my %seen;
    while ( @work ) {
    ...
    
        # process job
    }
    
  2. or download this
    while ( @work || @work < 1000 ) { # should ought to be && not ||
    }