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
6 lines
152 B
JavaScript
6 lines
152 B
JavaScript
// For more comments about what's going on here, check out the `hello_world`
|
|
// example
|
|
const rust = import("./console_log");
|
|
|
|
rust.then(m => m.run());
|