Sprintln formats using the default formats for its operands and returns the resulting string. Spaces are always added between operands and a newline is appended.
(a ...any)
| 9 | // Sprintln formats using the default formats for its operands and returns the resulting string. |
| 10 | // Spaces are always added between operands and a newline is appended. |
| 11 | Sprintln(a ...any) string |
| 12 | |
| 13 | // Sprintf formats according to a format specifier and returns the resulting string. |
| 14 | Sprintf(format string, a ...any) string |
no outgoing calls