println(...)

signature
println(...obj: any[]) -> void

Print values to the standard output with a newline. If multiple arguments are provided, they are separated by spaces. Arguments are converted to strings using their `toString` method.

Examples

goose
println("hello world") // hello world
println(123) // 123
println("hello", "world") // hello world
println(1, 2, 3) // 1 2 3