top | item 46936592

(no title)

redox99 | 21 days ago

A programming language does not need to have a for loop. In fact many don't.

discuss

order

skaul|21 days ago

Programming languages need to give the developer a way to iterate (map, fold, for-loop, whatever) over a collection of items. Over time we've come up with more elegant ways of doing this, but as a programmer, until LLMs, you've still had to be actively involved in the control logic. My point is that a developer's relationship with the code is very different now, in a way that wasn't true with previous low-to-high level language climbs.

redox99|21 days ago

I was thinking of something like SQL, which is declarative and you tell it what you want, not how to do it broadly speaking.