mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-13 17:43:59 +00:00
8 lines
245 B
Plaintext
8 lines
245 B
Plaintext
;; https://developer.mozilla.org/en-US/docs/WebAssembly/Understanding_the_text_format
|
|
;; https://webassembly.github.io/wabt/demo/wat2wasm/
|
|
(module
|
|
(func (export "sum") (param i32 i32) (result i32)
|
|
local.get 0
|
|
local.get 1
|
|
i32.add))
|