()
| 180 | } |
| 181 | |
| 182 | func (o *output) rust() { |
| 183 | /* |
| 184 | let buffer: [u8; 5] = [ |
| 185 | 0x48, 0x65, 0x6C, 0x6C, 0x6F, |
| 186 | ]; |
| 187 | */ |
| 188 | fmt.Printf("let buffer: [u8; %d] = [\n", len(o.data)) |
| 189 | |
| 190 | o.bytesArray(4, 8) |
| 191 | |
| 192 | fmt.Println(",\n];") |
| 193 | fmt.Println() |
| 194 | fmt.Printf("let bufferSize = %d;\n", len(o.data)) |
| 195 | } |
| 196 | |
| 197 | func (o *output) powershell() { |
| 198 | /* |