nysus has asked for the wisdom of the Perl Monks concerning the following question:
As always, any help for my sorry a** is greatly apprciated. Thanks!print @visits{$key}->{'ip', 'last_time'}; # this doesn't work print @visits{$key}{'ip', 'last_time'}; # nor this Out of desperation, I've also tried: %$visits{$key}{'ip', 'last_time'} %@visits{$key}{'ip', 'last_time'} @@visits{$key}{'ip', 'last_time'} @$visits{$key}{'ip', 'last_time'} ...and the above with an infix operator.
$PM = "Perl Monk's";
$MCF = "Most Clueless Friar Abbot Bishop";
$nysus = $PM . $MCF;
Click here if you love Perl Monks
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Printing slice of anonymous hash within hash
by ariels (Curate) on Jul 05, 2001 at 11:25 UTC | |
|
Re: Printing slice of anonymous hash within hash
by btrott (Parson) on Jul 05, 2001 at 11:23 UTC |