my $match; foreach my $candidate ( @ORDERED_LIST_OF_POSSIBLE_MODULES ) { eval "use $candidate;"; next if ( $@ ); $match = $candidate; last; }