Help for this page

Select Code to Download


  1. or download this
    given ($address) {
        when (@whitelist) { $score -= 30 }
    ...
        when (/example\.com$/) { $score = 0 }
        default { ... }
    }
    
  2. or download this
    for my $a ($address) {
        if (grep $_ eq $a, @whitelist) { $score -= 30; last; }
    ...
        if ($a =~ /example\.com$/) { $score = 0; last; }
        ...
    }