Help for this page

Select Code to Download


  1. or download this
    package mylib;
       use strict;
       use warnings;
    ...
          $$href{$_} = $_;
       }
    }
    
  2. or download this
    #!/usr/local/bin/perl
    use strict;
    use warnings;
    ...
    for (keys %hash) {
       print "key: $_   value: $hash{$_}\n";
    }