9 lines
253 B
WebAssembly Text Format
9 lines
253 B
WebAssembly Text Format
(module $wat_example.wasm
|
|
(type (;0;) (func (result i32)))
|
|
(func $main (type 0) (result i32)
|
|
i32.const 42)
|
|
(memory (;0;) 2)
|
|
(global $__stack_pointer (mut i32) (i32.const 66560))
|
|
(export "memory" (memory 0))
|
|
(export "main" (func $main)))
|