Help for this page

Select Code to Download


  1. or download this
    use English; use strict; 
    my $key; my $value;
    ...
        print "($key, $value)\n"  if defined $value;
        print "($key, <undef>)\n" if not defined $value;
    }
    
  2. or download this
    use English; use strict;
    my $key; my $value; my $i;
    ...
        }
        print "}\n";
    }