Hi,
if $q = "How far from the earth is the sun?"
and I want to print $q in between <HELLO> and </HELLO>,
using simply the line
print "<HELLO> $q </HELLO>\n";
Why would the output be:
</HELLO>ow far from the earth is the sun?
With the second </HELLO> printed first, and the first character of the $q missing ?!
I have been moving the print line around the code, thinking that there might have a character before that conflicts with the print line, but nothing is working.
It is really weird. Never seen this before.
Grazia