This commit is contained in:
2025-04-19 15:19:48 +08:00
parent b9386de0b1
commit c44d5925a4
7 changed files with 72 additions and 4 deletions

3
assembly/index.ts Normal file
View File

@@ -0,0 +1,3 @@
export function add(a: i32, b: i32): i32 {
return a + b;
}