Unify print/println/readLine docs
This commit is contained in:
@@ -6,13 +6,13 @@
|
||||
package kotlin.io
|
||||
|
||||
|
||||
/** Prints a newline to the standard output stream. */
|
||||
/** Prints the line separator to the standard output stream. */
|
||||
public expect fun println()
|
||||
|
||||
/** Prints the given message and newline to the standard output stream. */
|
||||
/** Prints the given [message] and the line separator to the standard output stream. */
|
||||
public expect fun println(message: Any?)
|
||||
|
||||
/** Prints the given message to the standard output stream. */
|
||||
/** Prints the given [message] to the standard output stream. */
|
||||
public expect fun print(message: Any?)
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user