Code: Select all
print "Hello, world!"
It's printing an extra CR (carriage return) in addition to the normal line ending CR+LF pair.
Hello, world! 0xD 0xD 0xA ' it shows the literal chars, this here is only for clarity
I consider that a bug. (The Win32 compiler doesn't do this, BTW, outputs CR+LF only.)