http://qs321.pair.com?node_id=5737


in reply to Funny usage of print function

If you have a newline embedded in a quoted string (single or double both work for me), Perl will include it when printing:
print "a b c d";
prints
a b c d
while print "a b c d"; prints a b c d Check for line breaks in your code.