Help for this page

Select Code to Download


  1. or download this
    my @ordered;
    while( my $n = keys %hash ) {
    ...
        delete @hash{ @temp };
        push @ordered, @temp;
    }
    
  2. or download this
    my @ordered;
    while( my $n = keys %hash ) {
    ...
        delete @hash{ @temp };
        push @ordered, @temp;
    }