1 2 3 4 5 6 7 8 9 10
<script> fetch("out.wasm") .then(response => response.arrayBuffer()) .then(bytes => { return WebAssembly.instantiate(bytes); }) .then(results => { console.log(results.instance.exports.main()); }); </script>