wasm3 icon indicating copy to clipboard operation
wasm3 copied to clipboard

Yet another wasm runtime to toy with

Results 1 wasm3 issues
Sort by recently updated
recently updated
newest added

Build failing for windows/mingw target. Nimble project structure: src/wasm.nim: ``` import wasm3 let env = loadWasmEnv(readFile"wasm_payload.wasm") read_at_place = env.findFunction("read_wasm_at_index") echo read_at_place.call(uint32, 0) ``` wasm.nimble: ``` # Package [...] srcDir =...