Skip to content

println

println(input...)

ParameterTypeDescription
(variadic) input*Value to print

Prints the given value to the terminal while also adding a new line to the end. If the input value is of the type Error, the error message is forwarded to stderr instead of stdout.

Returns

(nil)