Help for this page

Select Code to Download


  1. or download this
    foreach my $size ( keys %$size_hash ) {
    ##.................^^^^^^^^^^^^^^^^
    
  2. or download this
        while( my( $size, $ref ) = each %{ $size_hash } ) {
            print $fh $size . '=[';
    ...
            }
            print $fh ']' . "\n";
        }