Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    use strict;
    use warnings;
    ...
    while ( (my $key, my $value) = each %hash) {
        print "$key = $value\n";
    }
    
  2. or download this
    k2 = v2
    k1 = v1
    k3 = v3