;;; TOOL: run-wasm-link ;;; FLAGS: (module (memory 1 1) (data (i32.const 0) "foo") (data (i32.const 10) "bar") ) (module (memory 1 1) (data (i32.const 0) "hello") (data (i32.const 100) "world") ) (;; STDOUT ;;; linked.wasm: file format wasm 0x1 Sections: Memory start=0x0000000e end=0x00000012 (size=0x00000004) count: 1 Data start=0x00000018 end=0x00000041 (size=0x00000029) count: 4 Section Details: Memory: - memory[0] pages: initial=2 max=2 Data: - segment[0] size=3 - init i32=0 - 0000000: 666f 6f foo - segment[1] size=3 - init i32=10 - 000000a: 6261 72 bar - segment[2] size=5 - init i32=65536 - 0010000: 6865 6c6c 6f hello - segment[3] size=5 - init i32=65636 - 0010064: 776f 726c 64 world Code Disassembly: ;;; STDOUT ;;)