println

Prints the line separator to the standard output stream.

expect fun println()(source)
fun main() {
    println("Hello, Kotlin!")
    println()          // prints only the line separator
    println("Goodbye!")
}

Source