fwd/vendor/wasm-bindgen/tests/headless/snippets1.js
John Doty 9c435dc440 Vendor dependencies
Let's see how I like this workflow.
2022-12-19 08:38:22 -08:00

9 lines
111 B
JavaScript

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