TropicSapling/triforce

Sets created by functions?

Opened this issue · 0 comments

Not necessarily a built-in language feature.

next (n) => (n**2)|(next (n + 1));

next 2; // "=> 4|(9|(16|(25|(36|(49|(64|(81|(100|...))))))))... Equivalent of just typing 4|9|16|..."