()
| 195 | } |
| 196 | |
| 197 | func (o *output) powershell() { |
| 198 | /* |
| 199 | [byte[]]$bytes = @( |
| 200 | 0x48, 0x65, 0x6C, 0x6C, 0x6F, |
| 201 | ) |
| 202 | */ |
| 203 | fmt.Printf("[byte[]]$bytes = @(\n") |
| 204 | |
| 205 | o.bytesArray(4, 8) |
| 206 | |
| 207 | fmt.Println(",\n)") |
| 208 | fmt.Println() |
| 209 | fmt.Printf("let bufferSize = %d;\n", len(o.data)) |
| 210 | } |
| 211 | |
| 212 | func (o *output) nim() { |
| 213 | /* |