static.xslang.org

Static assets for the XS programming language.

Files

Usage

<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>