Println formats using the default formats for its operands and writes to standard output. Spaces are always added between operands and a newline is appended. It returns the number of bytes written and any write error encountered.
(a ...any)
| 57 | // Spaces are always added between operands and a newline is appended. |
| 58 | // It returns the number of bytes written and any write error encountered. |
| 59 | func Println(a ...any) { |
| 60 | Print(Sprintln(a...)) |
| 61 | } |
| 62 | |
| 63 | // Printf formats according to a format specifier and writes to standard output. |
| 64 | // It returns the number of bytes written and any write error encountered. |
searching dependent graphs…