first commit

This commit is contained in:
Alexander Navarro 2025-04-11 16:01:28 -04:00
commit b23be55d42
838 changed files with 730684 additions and 0 deletions

15
static/ts/index.ts Normal file
View file

@ -0,0 +1,15 @@
// testing file
interface Point {
x: number;
y: number;
name: string;
}
const p: Point = {
x: 100,
y: 200,
name: "foo",
};
console.log(p);