mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-07-23 18:52:50 +02:00
9 lines
111 B
JavaScript
9 lines
111 B
JavaScript
export function get_two() {
|
|
return 2;
|
|
}
|
|
|
|
let a = 0;
|
|
export function get_stateful() {
|
|
a += 1;
|
|
return a;
|
|
}
|