blob: b72b6ae3064d1d9fef96de012457b414d22ce91c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
;;; TOOL: run-interp
(module
(func (export "test") (result i32)
block (result i32)
i32.const 10
drop
i32.const 1
end
)
)
(;; STDOUT ;;;
test() => i32:1
;;; STDOUT ;;)
|