This commit is contained in:
2023-11-16 15:46:19 +01:00
parent 8999b02a2b
commit 099d563718
7 changed files with 18 additions and 42 deletions
+5
View File
@@ -0,0 +1,5 @@
function add(a: number, b: number) {
return a + b
}
const c = add(1, 2) // 3