summaryrefslogtreecommitdiff
path: root/cli/tools/init/templates/main.ts
blob: be043e97c87dc971f08c0ef3e4d3e457941bbe8e (plain)
1
2
3
4
5
6
7
8
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));
}