(format string, a ...interface{})
| 227 | } |
| 228 | |
| 229 | func (e *Engine) printf(format string, a ...interface{}) { |
| 230 | _, _ = fmt.Fprintf(e.Out, format, a...) |
| 231 | } |
| 232 | |
| 233 | func (e *Engine) println(a ...interface{}) { |
| 234 | _, _ = fmt.Fprintln(e.Out, a...) |
no outgoing calls
no test coverage detected