print(...)

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

Print values to the standard output. If multiple arguments are provided, they are separated by spaces. Arguments are converted to strings using their `toString` method. No newline is printed at the end.

Examples

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