println

expect fun println()(source)

Prints the line separator to the standard output stream.


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

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

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.


actual inline fun println()(source)

Prints the line separator to the standard output stream.

actual fun println()

Prints the line separator to the standard output stream.


actual fun println(message: Any?)

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

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

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


actual external fun println()

Prints the line separator to the standard output stream.