in reply to Calls to other Perl programs
use strict; use MyMod; my %hash = ( usual=>'stuff',so=>'on',foo=>'bar' ); %hash = MyMod->do_stuff(%hash); [download]
package MyMod; use strict; sub do_stuff { shift; my %newhash=@_; #stuff return %newhash; } [download]