1
0
mirror of https://github.com/fluencelabs/wasmer synced 2025-04-01 23:41:03 +00:00

12 lines
235 B
Plaintext
Raw Normal View History

2019-03-06 01:16:36 +08:00
(module
(func $main (export "main")
(local $x i32)
(tee_local $x (i32.const 3))
(i32.add (i32.const 4))
(if (i32.eq (i32.const 7))
(then)
(else unreachable)
)
)
)