summaryrefslogtreecommitdiff
path: root/test/wasm2js/export_global.wast
blob: 9b990be8dcfc2c5dda70e96a831ad5ef61be9372 (plain)
1
2
3
4
5
6
(module
    (global $global0 i32 (i32.const 655360))
    (export "HELLO" (global $global0))
    (func (result i32) (i32.const 42))
    (export "helloWorld" (func 0))
)