Earlier quoted context omitted.
This is good insight. Limits are often built into programming languages. Java is all about the limits. TS's selling point is literally the limits. As well as every opinionated language. I wonder if AI will make limitless languages easier to work with and maintain.
I'm not against limits in programming languages. They help to reduce the complexity that have to be managed. Limited languages are suitable for those that are willing to manage only so much. That's why Java has no "goto". But Perl does offer "goto". Why? Because Larry Wall built Perl for himself, and he wanted the most powerful tool that he could conceive. That's exactly what Perl is. And I accept that, and I really…
sub test() {last unless $_}
for (1, 2, 0, 3) {
print "$_\n";
test;
}
// 1 2 0
I miss it :(