I am new to perl and reading a code written in perl. A line reads like this:
$Map{$a}->{$b} = $c{$d};
I am familiar with hash looking like %samplehash and accessed as $samplehash{a}="b"
but what does the above line say about what is Map actually?
use Data::Dumperand laterprint Dumper($Map);. – musiKk Dec 9 '11 at 8:36print Dumper(\%Map);– flesk Dec 9 '11 at 9:44