Println formats using the default formats for its operands and writes to standard output. Spaces are always added between operands and a newline is appended. It returns the number of bytes written and any write error encountered.
(a ...any)
| 26 | // Spaces are always added between operands and a newline is appended. |
| 27 | // It returns the number of bytes written and any write error encountered. |
| 28 | Println(a ...any) *TextPrinter |
| 29 | |
| 30 | // Printf formats according to a format specifier and writes to standard output. |
| 31 | // It returns the number of bytes written and any write error encountered. |
no outgoing calls