in reply to code$"/code not found

the default value of $" is ' ' (space), so printing it might be deceptive. $" is the array print separator, so consider the following code:
{ local $" = ', '; @a = qw(foo bar baz quux); print "@a\n"; }
which outputs: foo, bar, baz, quux