Static assets for the XS programming language.
<script src="https://static.xslang.org/xs.js"></script>
<script>
(async () => {
const xs = await loadXS()
const output = await xs.run(`println("hello world")`)
console.log(output)
})()
</script>