The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
my @new_quote = qw(7.5 6.5 5.5);
my $old_quote = 5;

if (any(@new_quote) < $old_quote) {
  "I'm sorry, but we are going to re-finance".say
}