Help for this page

Select Code to Download


  1. or download this
    $evilhash->{1} = {
      red   => 1,
    ...
    my @colors = qw( red blue green );
    
    print join("|", @{$evilhash->{1}}{@colors}), "\n";
    
  2. or download this
    $evilhash = {
      '1' => {
    ...
        'red' => 1
      }
    };