mirror of
https://github.com/denoland/deno.git
synced 2024-11-25 15:29:32 -05:00
11 lines
170 B
TypeScript
11 lines
170 B
TypeScript
Deno.bench("exit(0)", function () {
|
|
Deno.exit(0);
|
|
});
|
|
|
|
Deno.bench("exit(1)", function () {
|
|
Deno.exit(1);
|
|
});
|
|
|
|
Deno.bench("exit(2)", function () {
|
|
Deno.exit(2);
|
|
});
|