afdc7b94da
#KT-15458 fixed
12 lines
323 B
Kotlin
12 lines
323 B
Kotlin
package kotlin.io
|
|
|
|
|
|
/** Prints a newline to the standard output stream. */
|
|
public header fun println()
|
|
|
|
/** Prints the given message and newline to the standard output stream. */
|
|
public header fun println(message: Any?)
|
|
|
|
/** Prints the given message to the standard output stream. */
|
|
public header fun print(message: Any?)
|