example cont stack wat
build / build (push) Failing after 1m15s

This commit is contained in:
2026-07-14 17:36:36 -06:00
parent 8a800fdcb2
commit 60482e3567
4 changed files with 112 additions and 3 deletions
+20
View File
@@ -0,0 +1,20 @@
<html>
<head>
<script>
const imports = {
guppy: {
print: (arg) => console.log (arg)
}
}
fetch("u.wasm")
.then((response) => response.arrayBuffer())
.then((bytes) => WebAssembly.instantiate(bytes, imports))
.then((results) => {
results.instance.exports.main ();
});
</script>
</head>
<body>
</body>
</html>