: Now the only way I have figured out how to access it is with this ugly
: string:
: print "${%{$self{DF_SPEC}}}{'a'}\n";
Try
print "$self->{DF_SPEC}{a}\n";
-- tdk
- Nested Hashes Help Craig Moynes/Markham/IBM
- Timothy Kimball
: Now the only way I have figured out how to access it is with this ugly
: string:
: print "${%{$self{DF_SPEC}}}{'a'}\n";
Try
print "$self->{DF_SPEC}{a}\n";
-- tdk