Help for this page

Select Code to Download


  1. or download this
    my %h = ( a => 5, b => 6, c => 7 );
    
    each %h;
    say for keys( %h );
    
  2. or download this
    b
    c
    a
    
  3. or download this
    my %h = ( a => 5, b => 6, c => 7 );
    
    ...
    while ( my $k = each( %h ) ) {
       say $k;
    }
    
  4. or download this
    c
    a
    ...
    b
    c
    a