1
0
mirror of https://github.com/fluencelabs/wasmer synced 2024-12-15 15:15:40 +00:00
wasmer/examples/trap.wat
2018-11-15 01:22:44 -08:00

6 lines
109 B
Plaintext

(module
(func $main (export "main") (result i32)
(i32.div_s (i32.const 0) (i32.const 0))
)
)