(format string, args ...interface{})
| 30 | } |
| 31 | |
| 32 | func (self *Stream) Printf(format string, args ...interface{}) { |
| 33 | self.buf.WriteString(fmt.Sprintf(format, args...)) |
| 34 | } |
| 35 | |
| 36 | func (self *Stream) WriteFile(outfile string) error { |
| 37 |
no test coverage detected