in reply to Another posible initializer
in thread Testing array of hash values
Actually,
is a common idiom for using a hash slice to load a hash with keys and undef values.my %p; @p{'eyes', 'hair', 'etc'} = ();
In Section
Seekers of Perl Wisdom