- or download this
use strict;
use warnings;
...
E => { F => 1, G => "3E", H => 5 },
);
print "$_->{G} " for (values %hash);
- or download this
3A 3D 3C 3E 3B
- or download this
print join " ", map {values %{$_}, "-"} values %hash;
- or download this
5 1 3A - 5 1 3D - 5 1 3C - 5 1 3E - 5 1 3B -