DRAFT
PrintNewLineFirst
Misconception:
println(String)
prints a newline character followed by the given String.
Incorrect
println(...) starts a new line and then prints
Correct
println(...) prints and then starts a new line
CorrectionHere is what's right.
Here is what's right.
The println(...)
methods print the given contents followed by a newline. The newline comes after the contents.