Help for this page

Select Code to Download


  1. or download this
    $class = '...';
    $color = color_of($class);
    ...
        my $t = first { $class =~ /$_->{'re'}/ } @rules;
        return $color->{'color'};
    }
    
  2. or download this
    for my $foo (...) {
        my $color = first { $class =~ /$_->{'re'}/ } @rules;
    ...
    
        ...
    }
    
  3. or download this
    my $color = ${first { $class =~ /$_->{'re'}/ } @rules}->{'color'};