cdn icon indicating copy to clipboard operation
cdn copied to clipboard

wast to wasm & wat to wasm & wasm to wat

Open xgqfrms opened this issue 1 year ago • 5 comments

wast to wasm & wat to wasm & wasm to wat

wat 是 WebAssembly 有一个基于 S-表达式的文本表示形式 wast 是用于测试的 wat, 是 wat 的超集

https://mbebenita.github.io/WasmExplorer/


(module
  (export "sqrt" (func $sqrt))
  (func $sqrt
    (param $num f32)
    (result f32)
    (f32.sqrt (get_local $num))
  )
)

https://github.com/xgqfrms/cdn/blob/gh-pages/webassembly/readme.md

https://github.com/xgqfrms/cdn/tree/gh-pages/webassembly

xgqfrms avatar Sep 04 '22 15:09 xgqfrms