summaryrefslogtreecommitdiff
path: root/cli/tools/init/templates/main_bench.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tools/init/templates/main_bench.ts')
-rw-r--r--cli/tools/init/templates/main_bench.ts9
1 files changed, 0 insertions, 9 deletions
diff --git a/cli/tools/init/templates/main_bench.ts b/cli/tools/init/templates/main_bench.ts
deleted file mode 100644
index 5867ca0a6..000000000
--- a/cli/tools/init/templates/main_bench.ts
+++ /dev/null
@@ -1,9 +0,0 @@
-import { add } from "./main.ts";
-
-Deno.bench(function addSmall() {
- add(1, 2);
-});
-
-Deno.bench(function addBig() {
- add(2 ** 32, 2 ** 32);
-});