Files
kotlin-fork/libraries/stdlib/common/src/kotlin/ConsoleH.kt
T
Ilya Gorbunov afdc7b94da Add headers for print and println.
#KT-15458 fixed
2017-01-13 19:41:59 +03:00

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?)