Add more files

This commit is contained in:
2025-02-08 19:34:20 -06:00
parent 82a0a290d4
commit 503e82c2f4
7 changed files with 159 additions and 2 deletions

8
deno/main.ts Normal file
View File

@@ -0,0 +1,8 @@
export function add(a: number, b: number): number {
return a + b;
}
// Learn more at https://docs.deno.com/runtime/manual/examples/module_metadata#concepts
if (import.meta.main) {
console.log("Add 2 + 3 =", add(2, 3));
}