mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-03-12 15:34:48 +00:00
10 lines
111 B
JavaScript
10 lines
111 B
JavaScript
export function get_two() {
|
|
return 2;
|
|
}
|
|
|
|
let a = 0;
|
|
export function get_stateful() {
|
|
a += 1;
|
|
return a;
|
|
}
|