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


in reply to Mini-Tutorial: Dereferencing Syntax

It's also worth noting that the following are two completely different things.

@hash{'key1', 'key2'} $hash{'key1', 'key2'}

The first one is basically a shorthand for:

($hash{'key1'}, $hash{'key2'})

The second one is:

$hash{join($;, 'key1', 'key2')}

... where $; is the subscript separator, which defaults to \034.

perl -E'sub Monkey::do{say$_,for@_,do{($monkey=[caller(0)]->[3])=~s{::}{ }and$monkey}}"Monkey say"->Monkey::do'

Replies are listed 'Best First'.
Re^2: Mini-Tutorial: Dereferencing Syntax
by jdporter (Paladin) on Jun 20, 2012 at 21:51 UTC

    And similarly (though not identically, certainly) for arrays.

Re^2: Mini-Tutorial: Dereferencing Syntax
by ikegami (Patriarch) on Sep 17, 2012 at 05:36 UTC
    The difference between hash lookups and hash slices has nothing to do with references or how to use them. I shall not add such a note.