This commit is contained in:
2020-01-30 21:11:12 +08:00
parent 66b3d096db
commit 9e8f93b667
9 changed files with 5600 additions and 0 deletions

4
wasm/site/index.js Normal file
View File

@@ -0,0 +1,4 @@
const js = import("./node_modules/hello-wasm/hello_wasm.js");
js.then(js => {
js.greet("WebAssembly");
});