the output of the function 'println' is not displayed correctly. There is a space at the end of the line, not a break line.
the code
print("line1"); print("line2"); print("line3"); println("\r\n"); println("line1"); println("line2"); println("line3");
returns: "line1line2line3 line1 line2 line3 " instead of: "line1line2line3 line1 line2 line3 "
the code
returns: "line1line2line3 line1 line2 line3 "
instead of:
"line1line2line3
line1
line2
line3
"