mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-03-25 06:21:06 +00:00
6 lines
79 B
JavaScript
6 lines
79 B
JavaScript
|
const js = import("./hello_world");
|
||
|
|
||
|
js.then(js => {
|
||
|
js.greet("World!");
|
||
|
});
|