• pixelscript@lemmy.ml
      link
      fedilink
      English
      arrow-up
      3
      arrow-down
      1
      ·
      4 months ago

      Stateless functions still deal with state, they just don’t hold onto it. Without state to mutate, a so-called stateless function doesn’t do anything.

      In declarative languages, your state is the sum of everything you’ve declared. You don’t query results out of thin air. Computational results logically conclude from everything you set up.

      HTML ““has state””, as in it has a DOM, but it doesn’t do anything with it. You don’t mutate the DOM after it’s built, or query the DOM to compute results that weren’t trivially evident from the state you declared.

      You can do those things with JavaScript. But all that proves is JavaScript is a programming language, and HTML is just a data format it can interact with.

      • Doc Avid Mornington@midwest.social
        link
        fedilink
        English
        arrow-up
        1
        ·
        4 months ago

        Programming is the art of juggling of state and control flow

        Sure, stateless functions deal with and impact state in some way. If that’s what you meant by your previous comment, that’s fine, but that’s honestly not what would typically be meant by “juggling” state.

        The part about declarative languages has nothing to do with state. Declarative languages do not give the programmer control over flow, the other part of your definition.

        Learn Lisp, and you will never again be so certain about the difference between a programming language and a data format.

    • frezik@midwest.social
      link
      fedilink
      arrow-up
      1
      ·
      4 months ago

      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.

        • frezik@midwest.social
          link
          fedilink
          arrow-up
          1
          ·
          4 months ago

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

          • Doc Avid Mornington@midwest.social
            link
            fedilink
            English
            arrow-up
            1
            ·
            4 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.