in reply to Complex Data Structure
How can I visualize my complex data structure?, short answer Data::Dumper
In order to retrieve data, you might use something like my $value = $Data{$Name}{Rank}[$i], though others on this site would say you should always include the explicit dereference, as in my $value = $Data{$Name}->{Rank}->[$i].
#11929 First ask yourself `How would I do this without a computer?' Then have the computer do it the same way.
|
|---|