in reply to query on hash understanding
See References quick reference and other links below like Data::Diver, Tutorials► Data Types and Variables ► Data Type: Array ► Data Type: Hash► References quick reference$ perl -le " $foo{bar}{baz} = 6; print $foo{bar}->{baz}; " 6
More elaborate and coprehensive tutorial in http://learn.perl.org/books/beginning-perl/, Learn Perl in about 2 hours 30 minutes, perlintro, chromatics free book Modern Perl a loose description of how experienced and effective Perl 5 programmers work....You can learn this too.
|
|---|