mirror of
https://github.com/rustwasm/wasm-bindgen.git
synced 2024-12-02 21:25:16 +03:00
17 lines
366 B
HTML
17 lines
366 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Wasm audio worklet</title>
|
|
</head>
|
|
<body>
|
|
<script type="module">
|
|
import init, {web_main} from "./pkg/wasm_audio_worklet.js";
|
|
async function run() {
|
|
await init();
|
|
web_main();
|
|
}
|
|
run();
|
|
</script>
|
|
</body>
|
|
</html>
|