- or download this
for my $key (sort keys %client_total) {
$client_total = {$key} = $client_total/10;
}
- or download this
for my $key (sort keys %client_total) {
$client_total{$key} = $client_total{$key}/10;
}
- or download this
$_/=10 for values %client_total;
- or download this
map {$_/=10} values %client_total;