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