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