- or download this
my @array_data;
- or download this
foreach my $hash (@array_data) {
$logger->log( "HASH NOW: =====> ". Dumper($hash));
}
- or download this
HASH NOW: =====> $VAR1 = {
'Name' => 'First Segment',
...
'Activity Date' => '21/04/2020',
'Total Commission' => 0,
};
- or download this
my $activity_date = $hash->{'Activity Date'};
print “Activity date: $activity_date”;
- or download this
my $max_date = 0;
$_ > $max_date and $max_date = $_ for values @array_data;