in reply to
right use of a hash table
change
my $M4;
to
my %M4;
Individual hash elements are accessed/set like so
$M4{foo} = 'bar';
but Hashes are declared like
my %M4 = (foo => 'bar', me => 'you' );
This is not a Signature...
Comment on
Re: right use of a hash table
Select
or
Download
Code
In Section
Seekers of Perl Wisdom