in reply to Re: Strange compiler behavior with map?in thread Strange compiler behavior with map?
my @f = 1 .. 3; # syntax error my %f = map { "$_" => 1 ; } @f; my %f = map {; "$_" => 1 } @f; print %f; __END__ 113121 [download]