mirror of
https://github.com/fluencelabs/assemblyscript
synced 2025-04-26 15:32:16 +00:00
15 lines
371 B
Plaintext
15 lines
371 B
Plaintext
(module
|
|
(type $FUNCSIG$v (func))
|
|
(memory $0 0)
|
|
(global $export/a i32 (i32.const 1))
|
|
(global $export/b i32 (i32.const 2))
|
|
(export "memory" (memory $0))
|
|
(export "a" (global $export/a))
|
|
(export "renamed_a" (global $export/a))
|
|
(export "renamed_b" (global $export/b))
|
|
(export "renamed_renamed_b" (global $export/b))
|
|
(func $start (; 0 ;) (type $FUNCSIG$v)
|
|
nop
|
|
)
|
|
)
|