% perl -lwe 'print for map {1, $_} 3..4' syntax error at -e line 1, near "} 3" Execution of -e aborted due to compilation errors. % perl -lwe 'print for map {+1, $_} 3..4' 1 3 1 4