in reply to examining HASH(0x1234567) in Debugger
Is source code something like this? I'm not sure?:
Why not add into the source code:my @gravity_hashrefs = grep {$_->{CHIPS_PART_NAME}=~/gravity/i} @goodR +efDes;
Then add
print Dumper \@gravity_hashrefs;?
It is possible to add extra statements into a grep{}.
I think this would work....
I am unsure why there is so much fascination with the Debugger when it is so easy to add print statements into Perl and compile and run the result at rocket speed. I seldom need the debugger even when writing "raw" C.grep { if ($_->{CHIPS_PART_NAME}=~/gravity/i) { print Dumper $_; 1; } else { 0; } } @goodRefDes;
|
|---|