this post was submitted on 06 Mar 2024
522 points (96.1% liked)

Programmer Humor

32050 readers
1544 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 5 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 1 points 6 months ago (1 children)

There's no such thing as a pure functional language. All it would accomplish is warming the CPU up. All such languages store data away at some point.

[–] [email protected] 1 points 6 months ago (1 children)
[–] [email protected] 1 points 6 months ago (1 children)

Your statement implies it. Having stateless or declarative functions that never store or retrieve data would mean they are pure functions.

[–] [email protected] 1 points 6 months ago

No, my question does not imply a pure functional language at all. Pure functions exist in languages which are not purely functional. Most of the functions I write are pure functions. I could have a workflow where I work with another programmer who handles the minimal stateful pieces, and I would only write stateless functions - would that make me not a programmer?

(There are also purely functional languages, by the way. I just didn't remotely imply there were, or make any claims about them, at any point in this thread, prior to this parenthetical.)

The part about declarative languages has nothing to do with state, or functional languages. Declarative languages are a whole different thing. Of course declarative languages handle state. The comment I was replying to said "Programming is the art of juggling of state and control flow". Declarative languages don't involve juggling control flow.