mirror of
https://github.com/fluencelabs/assemblyscript
synced 2025-04-26 15:32:16 +00:00
13 lines
279 B
Plaintext
13 lines
279 B
Plaintext
|
(module
|
||
|
(type $i (func (result i32)))
|
||
|
(global $HEAP_BASE i32 (i32.const 4))
|
||
|
(memory $0 1)
|
||
|
(export "default" (func $named-export-default/get3))
|
||
|
(export "memory" (memory $0))
|
||
|
(func $named-export-default/get3 (; 0 ;) (type $i) (result i32)
|
||
|
(return
|
||
|
(i32.const 3)
|
||
|
)
|
||
|
)
|
||
|
)
|