diff options
Diffstat (limited to 'examples/cat.ts')
-rw-r--r-- | examples/cat.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/examples/cat.ts b/examples/cat.ts index 01a059ad0..0634daaf1 100644 --- a/examples/cat.ts +++ b/examples/cat.ts @@ -4,3 +4,6 @@ import { argv } from "process"; const path = resolve(argv.at(-1)!); await write(stdout, file(path)); + +Bun.stdout; +process.stdout; |