println

Common
JVM
JS
Native
1.0
fun println()

Prints the line separator to the standard output stream.

Common
JVM
JS
Native
1.0
fun println(message: Any?)

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

JVM
1.0
fun println(message: Int)
JVM
1.0
fun println(message: Long)
JVM
1.0
fun println(message: Byte)
JVM
1.0
fun println(message: Short)
JVM
1.0
fun println(message: Char)
JVM
1.0
fun println(message: Boolean)
JVM
1.0
fun println(message: Float)
JVM
1.0
fun println(message: Double)
JVM
1.0
fun println(message: CharArray)
Native
1.3
fun println(message: String)

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