in reply to Re: Using a hash with the @ sigil
in thread Using a hash with the @ sigil
@hash{@array} = 'foo'; # converted to a 1-element list @hash{@array} = ('foo'); # equivalent @hash{@array} = ('foo', undef, undef); # equivalent @hash{@array} = ('foo', 'foo', 'foo'); # arguably should be equivalent
|
|---|