Initial Commit

This commit is contained in:
Esa Kataja
2025-08-22 23:57:34 +03:00
commit d6e6270237
5 changed files with 45 additions and 0 deletions
+8
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));
}