http://qs321.pair.com?node_id=627540


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...