Help for this page

Select Code to Download


  1. or download this
    my %hash = map { "a$_" => undef } @list;   # syntax error at ... line 
    +1, near "} @list"
    my %hash = map {; "a$_" => undef } @list;  # OK.