summaryrefslogtreecommitdiff
path: root/deps/v8/third_party/wasm-api/example/threads.wat
blob: 29a3bbcc1a62cf3c4083be758f317701e213777d (plain)
1
2
3
4
5
(module
  (func $message (import "" "hello") (param i32))
  (global $id (import "" "id") i32)
  (func (export "run") (call $message (global.get $id)))
)