Help for this page

Select Code to Download


  1. or download this
    my %hash= initvalues();
    
    ...
    sub initvalues {
      return ('a'=>0, ...);
    }
    
  2. or download this
    my %hash;
    inithash(\%hash);
    ...
    %$h= ( 'a'=>0, ... ); #alternative to the previous line
    }