Help for this page

Select Code to Download


  1. or download this
    my $primaryFeatures = {
        'foo', ['fool', 'food', 'foot'],
        'bar', ['barricade'],
    };
    
  2. or download this
    for my $element (@$value) {
        print "($key, $element)\n";
    }
    
  3. or download this
    use strict;
    use warnings;
    ...
            print "($key, $element)\n";
        }
    }
    
  4. or download this
    (bar, barricade)
    (foo, fool)
    (foo, food)
    (foo, foot)