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