Loading WASM::COSMOS...
Inspect how human-readable WebAssembly Text S-expressions encode into raw machine bytecode with sequential section headers.
(module
(func $add (param $a i32) (param $b i32) (result i32)
local.get $a
local.get $b
i32.add)
(export "add" (func $add))
)