Files
gyehoek-hs/index.html
T
msyds 60482e3567
build / build (push) Failing after 1m15s
example cont stack wat
2026-07-14 17:36:36 -06:00

21 lines
399 B
HTML

<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>