in reply to Re: Re: Why Would HTML::LinkExtor return a <I>hash</I> of attributes?
in thread Why Would HTML::LinkExtor return a hash of attributes?

 => Is a fancy comma (,). It allows you to say
print I => AM => NOT => QUOTING => WORDS => TIMES => 5;
which would print IAMNOTQUOTINGWORDSTIMES5

Using this fancy comma doesn't make a hash. A hash is a "data structure", and I => AM => NOT => QUOTING => WORDS => TIMES => 5 is a list.

Now you can do many things with lists. You can create arrays ( also data structures )

my @ARRAY = ( I => AM => NOT => QUOTING => WORDS => TIMES => 5 );
and you can create hashes
my %HASH = ( I => AM => NOT => QUOTING => WORDS => TIMES => 5 );
. Do you follow now?

____________________________________________________
** The Third rule of perl club is a statement of fact: pod is sexy.