initial commit

This commit is contained in:
2026-06-16 21:10:36 +02:00
commit a3c85a7983
12 changed files with 2004 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
function add(a: number, b: number): number {
return a + b;
}
if (import.meta.vitest) {
const { it, expect } = import.meta.vitest;
it("adds", () => {
expect(add(1, 2)).toBe(3);
});
}