Help for this page

Select Code to Download


  1. or download this
    use strict;
    use MyMod;
    
    my %hash = ( usual=>'stuff',so=>'on',foo=>'bar' );
    %hash = MyMod->do_stuff(%hash);
    
  2. or download this
    package MyMod;
    use strict;
    ...
      #stuff
      return %newhash;
    }