14
votes
Why does this map statement in Perl not compile?
Because Perl is guessing an EXPR (a hash reference, for example) instead of a BLOCK. This should work (note the '+' symbol):
my @a = ("a", "b", "c", "d", "e");
my %h = map { +"prefi …
