aboutsummaryrefslogtreecommitdiff
path: root/test/bun.js/print-process-args.js
blob: 3d4540053cc4fab086c367407d705d6db4a047e3 (plain) (blame)
1
2
3
4
var writer = Bun.stdout.writer()
writer.write(JSON.stringify(process.argv));
await writer.flush(true);
process.exit(0);