oden/third-party/vendor/wasm-bindgen/tests/headless/snippets1.js
2024-03-08 11:03:01 -08:00

9 lines
111 B
JavaScript

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