Perl has the negated if statement:
return unless fooOK;
return unless barOK;
return unless bazOK;
# do somethingPerl has the negated if statement:
return unless fooOK;
return unless barOK;
return unless bazOK;
# do something