Is there a shorthand for a new line character in Scala? In Java (on Windows) I usually just use \"\\n\", but that doesn\'t seem to work in Scala - specifically
Try this interesting construction :)
import scala.compat.Platform.EOL println("aaa"+EOL+"bbb")