Printf formats according to a format specifier and writes to standard output. It returns the number of bytes written and any write error encountered.
(format string, a ...any)
| 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. |
| 32 | Printf(format string, a ...any) *TextPrinter |
| 33 | |
| 34 | // Printfln formats according to a format specifier and writes to standard output. |
| 35 | // Spaces are always added between operands and a newline is appended. |
no outgoing calls