http://www.perlmonks.org?node_id=1010691

vinoth.ree has asked for the wisdom of the Perl Monks concerning the following question:

my $Rec_Ref = [1,2,3,4, 'name'=>'panic','age'=>'34','data'=>'10.98',}] +; print $Rec_Ref->[4]{'name'}."\n"

The above code gives me the value of 'name' key without using "->". Is that -> is optional ?