Help for this page

Select Code to Download


  1. or download this
    use List::Util qw(shuffle);
    ...
    foreach my $k (shuffle keys %foo) {
    ...
    }
    
  2. or download this
    %hash = (
       "a" => 1,
    ...
       "c" => 3,
       "d" => 4
    };
    
  3. or download this
    %hash = (
       "c" => 1,
    ...
       "a" => 3,
       "b" => 4
    };