Help for this page

Select Code to Download


  1. or download this
    foreach ($ref) {
        $hist{$_}++ for $_;
    }
    
  2. or download this
    for ( keys %$ref) {
        ...
    }
    
  3. or download this
        $hist{$_}++ for keys %$_;
    
  4. or download this
    for my $hashref ( keys %$ref) {
        $hist{$_}++ for keys %$hashref;
    }