Just another question: what do I have to do in ord...
# webassembly
a
Just another question: what do I have to do in order to add a function or a value to the WASM exports? I inspected the .wat file and the only exports I could find were “__init” and “memory” .
s
Use @JsExport on top-level functions. Values are not supported at the moment
a
Thanks 👍