Print formats using the default formats for its operands and writes to standard output. Spaces are added between operands when neither is a string. It returns the number of bytes written and any write error encountered.
(a ...any)
| 50 | // Spaces are added between operands when neither is a string. |
| 51 | // It returns the number of bytes written and any write error encountered. |
| 52 | func Print(a ...any) { |
| 53 | Fprint(defaultWriter, a...) |
| 54 | } |
| 55 | |
| 56 | // Println formats using the default formats for its operands and writes to standard output. |
| 57 | // Spaces are always added between operands and a newline is appended. |
searching dependent graphs…