mirror of
https://github.com/rustwasm/wasm-bindgen.git
synced 2024-12-27 03:55:20 +03:00
d8e5930799
Also clean up some other exampels
7 lines
255 B
JavaScript
7 lines
255 B
JavaScript
// Note that a dynamic `import` statement here is required due to
|
|
// webpack/webpack#6615, but in theory `import { greet } from './hello_world';`
|
|
// will work here one day as well!
|
|
const rust = import("./hello_world");
|
|
|
|
rust.then(m => m.greet("World!"));
|