mirror of
https://github.com/tlsnotary/wasm-bindgen.git
synced 2026-01-09 21:58:02 -05:00
8 lines
218 B
Plaintext
8 lines
218 B
Plaintext
(module $reference_test.wasm
|
|
(type (;0;) (func (param i32) (result i32)))
|
|
(func $docme (;0;) (type 0) (param i32) (result i32))
|
|
(memory (;0;) 17)
|
|
(export "memory" (memory 0))
|
|
(export "docme" (func $docme))
|
|
)
|