I really really don't undertand perl hash. I have been reading perl doc but not able to completely get perl reference.
For a prime example, can you please tell me the difference between below?
@{$table}{$item}
@{$table{$item}}
%{$table}{$item}
%{$table{$item}}
Or is there some general rule that I am missing from not able to decipher these?
Please point me to right direction. I have been reading perldoc.perl.org..