summaryrefslogtreecommitdiff
path: root/cli/tools/init/templates/main.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tools/init/templates/main.ts')
-rw-r--r--cli/tools/init/templates/main.ts8
1 files changed, 0 insertions, 8 deletions
diff --git a/cli/tools/init/templates/main.ts b/cli/tools/init/templates/main.ts
deleted file mode 100644
index be043e97c..000000000
--- a/cli/tools/init/templates/main.ts
+++ /dev/null
@@ -1,8 +0,0 @@
-export function add(a: number, b: number): number {
- return a + b;
-}
-
-// Learn more at https://deno.land/manual/examples/module_metadata#concepts
-if (import.meta.main) {
- console.log("Add 2 + 3 =", add(2, 3));
-}