First Commit

This commit is contained in:
2025-11-18 12:55:09 +01:00
parent ce26e0a82d
commit 48f65f3927
663 changed files with 72246 additions and 1 deletions

15
wasm_browser.html Normal file
View File

@@ -0,0 +1,15 @@
<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>