mirror of
https://github.com/fluencelabs/wasmer
synced 2024-12-13 22:25:40 +00:00
12 lines
235 B
Plaintext
12 lines
235 B
Plaintext
(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)
|
|
)
|
|
)
|
|
)
|