$ perl -Mstrict -wle ' > my @arr = ( 1, 2, 3 ); > print qq{@arr}; > { $" = q{}; print qq{@arr} } > print qq{@arr};' 1 2 3 123 123 $