(bytes: Uint8Array)
| 20 | const resource = new RAMResource() |
| 21 | |
| 22 | function print(bytes: Uint8Array): void { |
| 23 | process.stdout.write(new TextDecoder().decode(bytes) + '\n') |
| 24 | } |
| 25 | |
| 26 | async function runLabeled(ws: Workspace, label: string, cmd: string): Promise<void> { |
| 27 | console.log(`=== ${label} ===`) |