2020-01-17 20:32:21 +01:00
|
|
|
<html lang="en">
|
2020-01-14 17:10:03 +01:00
|
|
|
<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></body>
|
|
|
|
</html>
|