This repository has been archived on 2024-04-07. You can view files and clone it, but cannot push or open issues or pull requests.
wasm-canvas-example/assets/index.html

14 lines
334 B
HTML

<html>
<head>
<meta charset="utf-8"/>
<script src="wasm_exec.js"></script>
<script>
const go = new Go();
WebAssembly.instantiateStreaming(fetch("main.wasm"), go.importObject).then((result) => {
go.run(result.instance);
});
</script>
</head>
<body style="margin: 0;"></body>
</html>