aether 0.0.3

a native web assembly programming language
1
2
3
4
5
6
7
8
9
10
11
12
<script>
  fetch("cli/src/out.wasm")
    .then(response => response.arrayBuffer())
    .then(bytes => {
      return WebAssembly.instantiate(bytes);
    })
    .then(results => {
      let m = results.instance.exports;
      m.main(4);
      debugger;
    });
</script>