Help for this page

Select Code to Download


  1. or download this
    sub build_hash {
        my %return;
        @return{@keys} = @values;
        \%return;
    }
    
  2. or download this
    sub build_hash {
        ( @keys, @_ )[ map { $_, $_ + @keys } 0 .. $#keys ];
    }