Hello Perl Gurus,
I'm trying to write a program that will merge two hashes together onto a
third hash called %h3. I need to
return a reference to %h3 to the main program and print each of the values
of the hash %h3 using the arrow notation. 
Name of the actual function performing the merge mergehash.  Pass %h1 and
%h2 to mergehash as references.
The function call in the main program will be something like the following
where $ref_h3 will be used to print the values in %h3. 
        
                $ref_h3 = &mergehash(_____, _____);

%h1     = ("one" => 1, "two" => 2, "three" => 3);
%h2     = ("four" => 4, "five" => 5, "six" => 6);



Many Thanks!!!:)
JA





-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to