in reply to Re^2: hash of hash of hash of hash of hash...
in thread hash of hash of hash of hash of hash...
print "$topHash{2010}{Feb}{11}{00}{03}\n";
is syntactically equivalent to
print "$topHash{'2010'}{'Feb'}{'11'}{'00'}{'03'}\n";.
See Scalar value constructors in perldata, for example.
|
|---|