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