summaryrefslogtreecommitdiff
path: root/index.html
blob: cdc36b584d03364936de0c6ce4a993910b293011 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!DOCTYPE html>
<script src="wasm_exec.js"></script>
<script>
// Polyfill
if (!WebAssembly.instantiateStreaming) {
    WebAssembly.instantiateStreaming = async (resp, importObject) => {
        const source = await (await resp).arrayBuffer();
        return await WebAssembly.instantiate(source, importObject);
    };
}

const go = new Go();
WebAssembly.instantiateStreaming(fetch("pengui.wasm"), go.importObject).then(result => {
    go.run(result.instance);
});
</script>