Help for this page

Select Code to Download


  1. or download this
    %ex = (
    37 => "p" , 41 => "t",
    ...
    26 => "d" , 88 => "o" , 
    99 => "g" , 100 => "l" , 101 => "f" , 201 => "i"
    );
    
  2. or download this
    sub perlhash
    {
    ...
    push @$ch , $entry;
    }
    print Dumper @buckets;
    
  3. or download this
    print "enter a key u want to search";
    $k = <STDIN>;
    $h = perlhash($k);
    
  4. or download this
    my $VAR1 = [
          {
            '37' => 't',
          }
    ];