'\n' (linefeed/Newline) is the C syntax for the code 0x0A
'\r' (carriage return) is the C syntax for the code 0x0D
println() method sends only 0x0D (experimentally seen) which means that println() adds only carriage return.
'\n' (linefeed/Newline) is the C syntax for the code 0x0A
'\r' (carriage return) is the C syntax for the code 0x0D
println() method sends only 0x0D (experimentally seen) which means that println() adds only carriage return.