mirror of
https://github.com/roc-lang/roc.git
synced 2024-11-11 16:51:53 +03:00
13 lines
312 B
HTML
13 lines
312 B
HTML
<html>
|
|
<body>
|
|
<div id="output"></div>
|
|
<script src="platform/host.js"></script>
|
|
<script>
|
|
const elem = document.getElementById("output");
|
|
roc_web_platform_run("./hello-web.wasm", (string_from_roc) => {
|
|
elem.textContent = string_from_roc;
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|