roc/examples/hello-world/web-platform/index.html

12 lines
304 B
HTML

<html>
<body>
<div id="output"></div>
<script src="./host.js"></script>
<script>
const elem = document.getElementById("output");
roc_web_platform_run("./helloWeb.wasm", (string_from_roc) => {
elem.textContent = string_from_roc;
});
</script>
</body>
</html>