diff --git a/misc/wasm/wasm_exec.html b/misc/wasm/wasm_exec.html
index 233b8823d6..634ae20cfc 100644
--- a/misc/wasm/wasm_exec.html
+++ b/misc/wasm/wasm_exec.html
@@ -17,14 +17,14 @@ license that can be found in the LICENSE file.
async function loadAndCompile() {
let resp = await fetch("test.wasm");
let bytes = await resp.arrayBuffer();
- await compile(bytes);
+ await go.compile(bytes);
document.getElementById("runButton").disabled = false;
}
loadAndCompile();
-
+