Print formats using the default formats for its operands and writes to standard output. Spaces are added between operands when neither is a string. It returns the number of bytes written and any write error encountered.
(a ...any)
| 21 | // Spaces are added between operands when neither is a string. |
| 22 | // It returns the number of bytes written and any write error encountered. |
| 23 | Print(a ...any) *TextPrinter |
| 24 | |
| 25 | // Println formats using the default formats for its operands and writes to standard output. |
| 26 | // Spaces are always added between operands and a newline is appended. |
no outgoing calls