5 lines
109 B
JavaScript
5 lines
109 B
JavaScript
const js = import("./node_modules/hello-wasm/hello_wasm.js");
|
|
js.then(js => {
|
|
js.greet("WebAssembly");
|
|
});
|