15 lines
311 B
HTML
15 lines
311 B
HTML
|
|
<script type="module">
|
||
|
|
|
||
|
|
import { setupWebAssembly } from "./shared.js"
|
||
|
|
|
||
|
|
async function runWasm() {
|
||
|
|
|
||
|
|
const response = await fetch('./binaries/wasm_add.wasm');
|
||
|
|
const wasmBuffer = await response.arrayBuffer();
|
||
|
|
|
||
|
|
setupWebAssembly( wasmBuffer );
|
||
|
|
}
|
||
|
|
|
||
|
|
// Run on page load
|
||
|
|
runWasm().catch(console.error);
|
||
|
|
</script>
|