Sign in
chromium
/
external
/
github.com
/
WebAssembly
/
wabt
/
refs/heads/main
/
.
/
test
/
interp
/
start.txt
blob: 16972f5b775b21cd73e94c4b4f275ccdc1a6d9ab [
file
] [
edit
]
;;; TOOL: run-interp
(module
(memory 1)
(func $start
i32.const 0
i32.const 42
i32.store)
(start $start)
(func (export "get") (result i32)
i32.const 0
i32.load))
(;; STDOUT ;;;
get() => i32:42
;;; STDOUT ;;)