Help for this page

Select Code to Download


  1. or download this
    #!/usr/local/bin/perl -wl
    my %hash=(a=>0, b=>1, c=>2);
    my $key;
    while (defined($key=each(%hash))) { last; }
    while (defined($key=each(%hash))) { print($key); }
    
  2. or download this
    b
    c
    
  3. or download this
    a
    b
    c