Sprintfln formats according to a format specifier and returns the resulting string. Spaces are always added between operands and a newline is appended.
(format string, a ...any)
| 16 | // Sprintfln formats according to a format specifier and returns the resulting string. |
| 17 | // Spaces are always added between operands and a newline is appended. |
| 18 | Sprintfln(format string, a ...any) string |
| 19 | |
| 20 | // Print formats using the default formats for its operands and writes to standard output. |
| 21 | // Spaces are added between operands when neither is a string. |
no outgoing calls