mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
10 lines
222 B
Markdown
10 lines
222 B
Markdown
|
## `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
|
||
|
```
|