mirror of
https://github.com/geektutu/7days-golang.git
synced 2024-04-21 12:32:11 +00:00
12 lines
276 B
HTML
12 lines
276 B
HTML
<html>
|
|
|
|
<head>
|
|
<script src="static/wasm_exec.js"></script>
|
|
<script>
|
|
const go = new Go();
|
|
WebAssembly.instantiateStreaming(fetch("static/main.wasm"), go.importObject)
|
|
.then((result) => go.run(result.instance));
|
|
</script>
|
|
</head>
|
|
|
|
</html> |