mirror of
https://github.com/eliasstepanik/strudel-docker.git
synced 2026-01-11 13:48:34 +00:00
10 lines
311 B
HTML
10 lines
311 B
HTML
<script src="https://unpkg.com/hs2js@0.0.4"></script>
|
|
<button id="hello">hello</button>
|
|
<script>
|
|
hs2js.setBase('https://unpkg.com/hs2js@0.0.4/dist/');
|
|
hs2js.loadParser();
|
|
document.getElementById('hello').addEventListener('click', () => {
|
|
hs2js.evaluate('alert "hello from haskell!"');
|
|
});
|
|
</script>
|