println

expect fun println()(source)

Prints the line separator to the standard output stream.

Since Kotlin

1.0

expect fun println(message: Any?)(source)

Prints the given message and the line separator to the standard output stream.

Since Kotlin

1.0
actual fun println()(source)

Prints the line separator to the standard output stream.

Since Kotlin

1.1

actual fun println(message: Any?)(source)

Prints the given message and the line separator to the standard output stream.

Since Kotlin

1.1
inline fun println(message: Int)(source)
inline fun println(message: Long)(source)
inline fun println(message: Byte)(source)
inline fun println(message: Short)(source)
inline fun println(message: Char)(source)
inline fun println(message: Boolean)(source)
inline fun println(message: Float)(source)
inline fun println(message: Double)(source)
inline fun println(message: CharArray)(source)
actual inline fun println(message: Any?)(source)

Prints the given message and the line separator to the standard output stream.

Since Kotlin

1.0

actual inline fun println()(source)

Prints the line separator to the standard output stream.

Since Kotlin

1.0
external fun println(message: String)(source)
actual fun println(message: Any?)(source)

Prints the given message and the line separator to the standard output stream.

Since Kotlin

1.3

actual external fun println()(source)

Prints the line separator to the standard output stream.

Since Kotlin

1.3