Help for this page

Select Code to Download


  1. or download this
    while (my $key = each %hash)
    {
    ...
          keys %hash;
      }
    }
    
  2. or download this
    my %seen;
    while (my $key = each %hash)
    ...
          keys %hash;
      }
    }