blob: b2d4875ac769ff2c692d9eb5e214c79877bd4f39 (
plain)
1
2
3
4
5
6
7
8
9
|
## `stdio` benchmarks
Compile the C baseline and run the benchmark:
```bash
cc stdio.c -o stdio -O3
time dd if=/dev/zero bs=65536 count=500000 | ./stdio
time dd if=/dev/zero bs=65536 count=500000 | deno run stdio.js
```
|