printf(format, ...)

signature
printf(format: string, ...obj: any[]) -> void

Examples

goose
printf("Hello, %s!\n", "world") // Hello, world!
printf("The answer is %d\n", 42) // The answer is 42