print

expect fun print(message: Any?)

Prints the given message to the standard output stream.

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

Prints the given message to the standard output stream.

actual fun print(message: Any?)

Prints the given message to the standard output stream.

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

Prints the given message to the standard output stream.