Skip to content

IO

import "io"

Functions

print(values ...any)

Prints the provided values to the standard output without a newline at the end.

  • Parameters:
  • values: A variadic parameter of any type, representing the values to be printed.

printLn(values ...any)

Prints the provided values to the standard output with a space between each value and a newline at the end.

  • Parameters:
  • values: A variadic parameter of any type, representing the values to be printed.

printErr(values ...any)

Prints the provided values to the standard error output without a newline at the end.

  • Parameters:
  • values: A variadic parameter of any type, representing the values to be printed.

printErrLn(values ...any)

Prints the provided values to the standard error output with a space between each value and a newline at the end.

  • Parameters:
  • values: A variadic parameter of any type, representing the values to be printed.