mirror of
https://github.com/eliasstepanik/strudel-docker.git
synced 2026-01-11 13:48:34 +00:00
9 lines
281 B
HTML
9 lines
281 B
HTML
<script src="https://unpkg.com/hs2js@0.0.3"></script>
|
|
<script>
|
|
hs2js.setBase('https://unpkg.com/hs2js@0.0.3/dist/');
|
|
document.addEventListener('click', async () => {
|
|
window.log = (s) => console.log(s);
|
|
await hs2js.evaluate('log "hello from haskell!"');
|
|
});
|
|
</script>
|