1 2 3 4 5
var writer = Bun.stdout.writer(); setInterval(() => { writer.write("Wrote to stdout\n"); writer.flush(); }, 20);