mirror of
https://github.com/roc-lang/roc.git
synced 2025-07-24 15:03:46 +00:00
12 lines
315 B
HTML
12 lines
315 B
HTML
<html>
|
|
<body>
|
|
<div id="output"></div>
|
|
<script src="./host.js"></script>
|
|
<script>
|
|
const elem = document.getElementById("output");
|
|
roc_web_platform_run("./rocLovesWebAssembly.wasm", (string_from_roc) => {
|
|
elem.textContent = string_from_roc;
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|