()
| 240 | } |
| 241 | |
| 242 | func (o *output) python() { |
| 243 | /* |
| 244 | buffer = [ |
| 245 | 0x30, 0x63, 0x3A, 0x30, 0x64, |
| 246 | ] |
| 247 | */ |
| 248 | fmt.Printf("buffer = [\n") |
| 249 | |
| 250 | o.bytesArray(4, 8) |
| 251 | |
| 252 | fmt.Println(",\n]") |
| 253 | fmt.Println() |
| 254 | fmt.Printf("buffer_size = %d\n", len(o.data)) |
| 255 | } |
| 256 | |
| 257 | func (o *output) ruby() { |
| 258 | /* |
no test coverage detected