2024-05-17 09:09:31 +02:00

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>