mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-07 13:48:04 +00:00

* Snake-case-ify def names in comments * Snake-case-ify def names in strings * Snake-case-ify ignored function parameters * Snake-case-ify test script names, for consistency * Update CI snapshot to match snake_case * snake case correction --------- Co-authored-by: Anton-4 <17049058+Anton-4@users.noreply.github.com>
14 lines
300 B
HTML
14 lines
300 B
HTML
<html>
|
|
|
|
<body>
|
|
<div id="output"></div>
|
|
<script src="./host.js"></script>
|
|
<script>
|
|
const elem = document.getElementById("output");
|
|
roc_web_platform_run("./roc_loves_web_assembly.wasm", (string_from_roc) => {
|
|
elem.textContent = string_from_roc;
|
|
});
|
|
</script>
|
|
</body>
|
|
|
|
</html>
|