in reply to Re: Assignment of Arrays of Hashes
in thread Assignment of Arrays of Hashes

No, he is using the hash correctly. You can assign to multiple hash keys at once by saying @hash{'key1', 'key2', 'key3'} = ('value1', 'value2', 'value3');. This is known as a "slice", and that's what he's doing.

Makeshifts last the longest.