Help for this page

Select Code to Download


  1. or download this
    $hash->{a} = 30;
    $hash->{b} = 20;
    ...
    my $element = randomKey($hash);
    $string .= $element;
    }
    
  2. or download this
    my @array;
    foreach $key (keys %{$hash}){
    ...
      push @array,  $key;
     }
    }