mirror of
https://github.com/rustwasm/wasm-bindgen.git
synced 2024-11-25 19:43:00 +03:00
4716752991
By creating wasm modules from Rust!
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());
|