From afdc7b94dae474a359e405034ff7b112d24be767 Mon Sep 17 00:00:00 2001 From: Ilya Gorbunov Date: Wed, 11 Jan 2017 19:56:59 +0300 Subject: [PATCH] Add headers for print and println. #KT-15458 fixed --- libraries/stdlib/common/src/kotlin/ConsoleH.kt | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 libraries/stdlib/common/src/kotlin/ConsoleH.kt diff --git a/libraries/stdlib/common/src/kotlin/ConsoleH.kt b/libraries/stdlib/common/src/kotlin/ConsoleH.kt new file mode 100644 index 00000000000..aa57572dff0 --- /dev/null +++ b/libraries/stdlib/common/src/kotlin/ConsoleH.kt @@ -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?)