PrintNewLineFirst
DRAFT

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

Correction
Here is what's right.

The println(...) methods print the given contents followed by a newline. The newline comes after the contents.

Language

Java

Concepts

Stay up-to-date

Follow us on  twitter to hear about new misconceptions.