summaryrefslogtreecommitdiffstats
path: root/fluent-bit/lib/wasm-micro-runtime-WAMR-1.2.2/samples/wasm-c-api/src/globalexportimport-0.wat
blob: 7ab897c73244f3d544e3072a5bd3661213cc24a2 (plain)
1
2
3
4
5
6
7
8
;; Copyright (C) 2019 Intel Corporation.  All rights reserved.
;; SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception

(module
  (global $mut_f32_export (export "var f32") (mut f32) (f32.const 7))
  (func (export "get var f32 export") (result f32) (global.get $mut_f32_export))
  (func (export "set var f32 export") (param f32) (global.set $mut_f32_export (local.get 0)))
)