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; }