first commit

This commit is contained in:
2024-01-21 20:48:03 +08:00
commit c4bdcac452
28 changed files with 7707 additions and 0 deletions

6
src/types.ts Normal file
View File

@@ -0,0 +1,6 @@
export type LANGUAGE = "c" | "cpp" | "python" | "java"
export interface Code {
value: string
language: LANGUAGE
}