http://www.perlmonks.org?node_id=319746

Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:

Hi, I want to pass a associative array to the subroutine of the perl module as given below :
use Converter; my $document = new Converter; my $status = $document->convert( 'MIME-Type' => 'application/ms-word', 'Input' => '[In file]', 'Output' => '[Out file]' );
However , in the subroutine of the perl module Converter which i am making , I am unable to collect the associative array values.
How can I collect the values of MIME-TYPE,Input,Output in my subroutine .
Thankyou !

20040108 Edit by Corion: Fixed Unicode quotes
20040108 Edit by broquaint: title change (was Subroutine problem)