Perl Programming/Hash Variables - Wikibooks, open books for an open world
A Perl hash is similar to an ordinary array, but instead of using integer indexes, a hash uses "keys" that can take on any scalar value. These are usually strings or numbers. Syntax: instead of the @ operator, associative arrays use the % symbol, and rath...