Help for this page

Select Code to Download


  1. or download this
    for my $key (sort keys %client_total) {
     $client_total = {$key} = $client_total/10;
    }
    
  2. or download this
    for my $key (sort keys %client_total) {
       $client_total{$key} = $client_total{$key}/10;
    }
    
  3. or download this
    $_/=10 for values %client_total;
    
  4. or download this
    map {$_/=10} values %client_total;