mirror of
https://github.com/fluencelabs/assemblyscript
synced 2025-04-27 16:02:16 +00:00
8 lines
184 B
Plaintext
8 lines
184 B
Plaintext
(module
|
|
(type $i (func (result i32)))
|
|
(global $testGlobal i32 (i32.const 2))
|
|
(export "test" (func $test))
|
|
(func $test (; 0 ;) (type $i) (result i32)
|
|
(get_global $testGlobal)
|
|
)
|
|
) |