in reply to Re^2: Effecicncy of key-only hash
in thread Effecicncy of key-only hash

The @ tells you that what you expect to return is an array, and the curly braces {...} tell you that what you access is a hash.

qw(shave the modern way) is a list, so @hash{qw(shave the modern way)} is a list ("slice") of items in %hash with the listed keys.