summaryrefslogtreecommitdiffstats
path: root/vendor/wasm-bindgen/tests/headless/snippets1.js
blob: 12e5a6bff692b727e35c2ee814ad2800d13885d1 (plain)
1
2
3
4
5
6
7
8
9
export function get_two() {
  return 2;
}

let a = 0;
export function get_stateful() {
  a += 1;
  return a;
}