feat: wasmtime

This commit is contained in:
2022-07-10 14:48:03 +08:00
parent 6160185ace
commit 2a6b904c2a
5 changed files with 71 additions and 24 deletions

5
__wasm/wasmtime/add.c Normal file
View File

@@ -0,0 +1,5 @@
// add.c
int add (int first, int second)
{
return first + second;
}