(format string, a ...any)
| 40 | } |
| 41 | |
| 42 | func printf(format string, a ...any) { |
| 43 | fmt.Fprintf(Stdout, format, a...) |
| 44 | } |
| 45 | |
| 46 | // outln is like fmt.Println in the common case, except when Stdout is |
| 47 | // changed (as in js/wasm). |
no outgoing calls
no test coverage detected
searching dependent graphs…