mirror of
https://github.com/rustwasm/wasm-bindgen.git
synced 2024-11-29 08:53:03 +03:00
5 lines
152 B
JavaScript
5 lines
152 B
JavaScript
|
// For more comments about what's going on here, check out the `hello_world`
|
||
|
// example
|
||
|
const rust = import("./wasm_in_wasm");
|
||
|
rust.then(m => m.run());
|