Help for this page

Select Code to Download


  1. or download this
    my %hash = ('perl' => 1 , 'C' => 0) ;
    
  2. or download this
    my $hash = {'perl' => 1 , 'C' => 0} ;
    foreach my $key(sort keys %$hash)
    ...
         print "$key : $hash->{$key} \n" ;
    
            }