1
0
mirror of https://github.com/fluencelabs/wasmer synced 2025-03-16 16:20:49 +00:00
2019-02-28 23:12:50 +08:00

21 lines
472 B
Plaintext

(module
(func $main (export "main")
(if (i32.eq (select
(i32.const 10)
(i32.const 20)
(i32.const 1)
) (i32.const 10))
(then)
(else (unreachable))
)
(if (i32.eq (select
(i32.const 10)
(i32.const 20)
(i32.const 0)
) (i32.const 20))
(then)
(else (unreachable))
)
)
)