Help for this page

Select Code to Download


  1. or download this
    my %h = map { $_ => 1 } qw( a b c d );
    
    ...
    while (my $k = each(%h)) {
       print("$k\n");            # a b d
    }
    
  2. or download this
    my %h = map { $_ => 1 } qw( a b c d );
    
    ...
    while (my $k = each(%h)) {
       print("$k\n");            # c a b d
    }