This is great; looks like it's still fairly rough but interesting that GC languages are making due with what's there in the MVP of WebAssembly right now.
Wonder how it works? does it use the regular call stacks or construct it's own and so on?
> Go’s garbage collection is fully supported. WebAssembly is planning to add its own garbage collection, but it is hard to imagine that it would yield a better performance than Go’s own GC which is specifically tailored to Go’s needs.
Presumably a runtime will be compiled into the wasm output, including Go's garbage collector.
Wonder how it works? does it use the regular call stacks or construct it's own and so on?