Help for this page

Select Code to Download


  1. or download this
    syntax error at colors.pl line 31, near "$hash{"
    
  2. or download this
    my %colors = map { $_ => $hash->{$_} } grep { $_ =~ /color$/ } keys %$
    +hash;
    
  3. or download this
    my %colors = map { $_ => $$hash{$_} } grep { $_ =~ /color$/ } keys %$h
    +ash;
    
  4. or download this
    $ perl colors.pl
    $VAR1 = {
    ...
              'test_headline_color' => '#7b0706',
              'header_textcolor' => 'blank'
            };