Sprint formats using the default formats for its operands and returns the resulting string. Spaces are added between operands when neither is a string.
(a ...any)
| 5 | // Sprint formats using the default formats for its operands and returns the resulting string. |
| 6 | // Spaces are added between operands when neither is a string. |
| 7 | Sprint(a ...any) string |
| 8 | |
| 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. |
no outgoing calls