Add headers for print and println.

#KT-15458 fixed
This commit is contained in:
Ilya Gorbunov
2017-01-11 19:56:59 +03:00
parent be95f66b13
commit afdc7b94da
@@ -0,0 +1,11 @@
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?)