in reply to Re: (jeffa) 2Re: 1 line array to hash converter
in thread 1 line array to hash converter
The type of brackets - {} - tells Perl that it's a hash.
The @ tells Perl to use list context vs. scalar context.
Note the difference between:
@hash{@array} = (1) x scalar(@array); print join(" -- ", keys %hash), "\n"; #AND $hash{@array} = (1) x scalar(@array); print join(" -- ", keys %hash), "\n";
|
|---|