|
|
| Perl-Sensitive Sunglasses | |
| PerlMonks |
can't use certain hashnames when traversing a slightly complex hashby gideondsouza (Monk) |
| on Jan 06, 2013 at 11:15 UTC ( #1011875=perlquestion: print w/ replies, xml ) | Need Help?? |
|
gideondsouza has asked for the
wisdom of the Perl Monks concerning the following question:
Ok so I'm using Github gists api from here. I'm trying to get the filename and raw url of each gist, I'm halfway done, but hit an odd roadblock. So far $gists[0]->{files} gives me the files portion of the gist. See the whole json structure here. $gists[0]->{files} looks like this with Data::Dumper.:
I get to the filename with this:
It gives me this error: Can't call method HASH(0x7f81c547aea8)'; without a package or object reference So what am I doing wrong? Is it because there is a dot in the hashname? I've seen examples of strings being used as a hash key
Back to
Seekers of Perl Wisdom
|
|